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

30 lines
586 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-python-dateutil";
version = "2.8.19.14";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-H08QrJi7ixat6dvuNRjZrOAXgh2UsFekJbBp+DRzf0s=";
};
# 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 ];
};
}