mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
python3Packages.types-redis: init at 4.2.5
Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
This commit is contained in:
parent
7c8e39e452
commit
60a4fda91d
29
pkgs/development/python-modules/types-redis/default.nix
Normal file
29
pkgs/development/python-modules/types-redis/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "types-redis";
|
||||||
|
version = "4.2.5";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "sha256-iPBNmfIMIMPQEpw3YB+ecMAbcfH670c3Zs+j3dvV5dU=";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Module doesn't have tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"redis-stubs"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Typing stubs for redis";
|
||||||
|
homepage = "https://github.com/python/typeshed";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ gador ];
|
||||||
|
};
|
||||||
|
}
|
@ -10600,6 +10600,8 @@ in {
|
|||||||
|
|
||||||
types-pytz = callPackage ../development/python-modules/types-pytz { };
|
types-pytz = callPackage ../development/python-modules/types-pytz { };
|
||||||
|
|
||||||
|
types-redis = callPackage ../development/python-modules/types-redis { };
|
||||||
|
|
||||||
types-requests = callPackage ../development/python-modules/types-requests { };
|
types-requests = callPackage ../development/python-modules/types-requests { };
|
||||||
|
|
||||||
types-setuptools = callPackage ../development/python-modules/types-setuptools { };
|
types-setuptools = callPackage ../development/python-modules/types-setuptools { };
|
||||||
|
Loading…
Reference in New Issue
Block a user