nixpkgs/pkgs/development/python-modules/types-redis/default.nix

30 lines
564 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-redis";
version = "4.4.0.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-fYJtRY6abb19TyH99tfDm6Li80dMijSAACQZZYYKDt8=";
};
# 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 ];
};
}