3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #203683 from r-ryantm/auto-update/python310Packages.fakeredis

python310Packages.fakeredis: 2.0.0 -> 2.1.0
This commit is contained in:
Fabian Affolter 2022-11-30 21:42:32 +01:00 committed by GitHub
commit d83b314c51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,7 +16,7 @@
buildPythonPackage rec {
pname = "fakeredis";
version = "2.0.0";
version = "2.1.0";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -25,7 +25,7 @@ buildPythonPackage rec {
owner = "dsoftwareinc";
repo = "fakeredis-py";
rev = "refs/tags/v${version}";
hash = "sha256-y9fuVg5Mu0ZT8hoja9V5mEfOz/hPH66Zbk5Rr/luPSc=";
hash = "sha256-d+colAAESTt2YME8URX3e/l6GsC1l0vzg3wY/NQPkDk=";
};
nativeBuildInputs = [
@ -61,6 +61,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Fake implementation of Redis API";
homepage = "https://github.com/dsoftwareinc/fakeredis-py";
changelog = "https://github.com/cunla/fakeredis-py/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};