python3Packages.types-dateutil: init at 2.8.9
This commit is contained in:
parent
ac68b477d6
commit
c935155b8d
24
pkgs/development/python-modules/types-dateutil/default.nix
Normal file
24
pkgs/development/python-modules/types-dateutil/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "types-python-dateutil";
|
||||
version = "2.8.9";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-kPlaa21Pq6NZKH8XosrlEczJ1KvImwGWm9rBGFgVwF0=";
|
||||
};
|
||||
|
||||
pythonImportsCheck = [ "dateutil-stubs" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Typing stubs for python-dateutil";
|
||||
homepage = "https://github.com/python/typeshed";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ milibopp ];
|
||||
};
|
||||
}
|
@ -10067,6 +10067,8 @@ in {
|
||||
|
||||
typer = callPackage ../development/python-modules/typer { };
|
||||
|
||||
types-dateutil = callPackage ../development/python-modules/types-dateutil { };
|
||||
|
||||
types-decorator = callPackage ../development/python-modules/types-decorator { };
|
||||
|
||||
types-freezegun = callPackage ../development/python-modules/types-freezegun { };
|
||||
|
Loading…
Reference in New Issue
Block a user