python310Packages.types-python-dateutil: init at 2.8.19

This commit is contained in:
Fabian Affolter 2022-10-08 11:30:43 +02:00
parent 6c8cf1e368
commit 148f8a027b
2 changed files with 31 additions and 0 deletions

View File

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

View File

@ -11374,6 +11374,8 @@ in {
types-protobuf = callPackage ../development/python-modules/types-protobuf { };
types-python-dateutil = callPackage ../development/python-modules/types-python-dateutil { };
types-pytz = callPackage ../development/python-modules/types-pytz { };
types-pyyaml = callPackage ../development/python-modules/types-pyyaml { };