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

28 lines
563 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-dateutil";
version = "2.8.19.9";
format = "setuptools";
src = fetchPypi {
pname = "types-python-dateutil";
inherit version;
hash = "sha256-Y3cW+zr73H62g/ZBFx+HSTevExSc1Faoxj6PgRJ6Oe0=";
};
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 ];
};
}