nixpkgs/pkgs/development/python-modules/types-pytz/default.nix
2022-04-27 23:25:19 +02:00

30 lines
561 B
Nix

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