My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/types-dateutil/default.nix

24 lines
533 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-python-dateutil";
version = "2.8.16";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-OqrEwTjra47LwlUJluwl1uRbXTKIfR5pPQhC7i+mWdI=";
};
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 ];
};
}