nixpkgs/pkgs/development/python-modules/types-retry/default.nix
2023-07-22 22:40:00 +02:00

30 lines
561 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-retry";
version = "0.9.9.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-5HMdxoS1a4ddl0ZFmtZl07woGla1MKzfHJdzAWd5mUE=";
};
# Modules doesn't have tests
doCheck = false;
pythonImportsCheck = [
"retry-stubs"
];
meta = with lib; {
description = "Typing stubs for retry";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}