1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #147822 from fabaff/bump-fakeredis

python3Packages.fakeredis: 1.6.1 -> 1.7.0
This commit is contained in:
Fabian Affolter 2021-11-29 22:18:25 +01:00 committed by GitHub
commit 33ef578c3d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,12 +16,14 @@
buildPythonPackage rec {
pname = "fakeredis";
version = "1.6.1";
version = "1.7.0";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-DQapOE+3nanyFkzpbjTrnU4upGIVBwgF6m/TwXRZC0c=";
sha256 = "sha256-yb0S5DAzbL0+GJ+uDpHrmZl7k+dtv91u1n+jUtxoTHE=";
};
propagatedBuildInputs = [
@ -45,7 +47,9 @@ buildPythonPackage rec {
"test/test_aioredis2.py"
];
pythonImportsCheck = [ "fakeredis" ];
pythonImportsCheck = [
"fakeredis"
];
meta = with lib; {
description = "Fake implementation of Redis API";