Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / types-redis / default.nix
blobc2e0e0551321ce15c84e30ec0cea14d4d5c6a34a
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , cryptography
5 , types-pyopenssl
6 }:
8 buildPythonPackage rec {
9   pname = "types-redis";
10   version = "4.6.0.10";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-qn+190NTRQDydN3xGrHJEKrhAgSBhlo2t5nh1n3iqvM=";
16   };
18   propagatedBuildInputs = [
19     cryptography
20     types-pyopenssl
21   ];
23   # Module doesn't have tests
24   doCheck = false;
26   pythonImportsCheck = [
27     "redis-stubs"
28   ];
30   meta = with lib; {
31     description = "Typing stubs for redis";
32     homepage = "https://github.com/python/typeshed";
33     license = licenses.asl20;
34     maintainers = with maintainers; [ gador ];
35   };