python312Packages.llm-gguf: init at 0.2 (#364926)
[NixPkgs.git] / pkgs / development / python-modules / types-redis / default.nix
blob5878c4bd88a6672e02b6f9922780f5d9b2d100a9
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   cryptography,
6   types-pyopenssl,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "types-redis";
12   version = "4.6.0.20240903";
13   pyproject = true;
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-S6saN42/I8LJXDcN/biajwM5V8T9GlP+5xtSnBgv4Ag=";
18   };
20   build-system = [ setuptools ];
22   dependencies = [
23     cryptography
24     types-pyopenssl
25   ];
27   # Module doesn't have tests
28   doCheck = false;
30   pythonImportsCheck = [ "redis-stubs" ];
32   meta = with lib; {
33     description = "Typing stubs for redis";
34     homepage = "https://github.com/python/typeshed";
35     license = licenses.asl20;
36     maintainers = with maintainers; [ gador ];
37   };