btrbk: add mainProgram (#356350)
[NixPkgs.git] / pkgs / development / python-modules / types-python-dateutil / default.nix
blob43dda7067fe7c76f4dafbbb3f237387a08350e3a
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6 }:
8 buildPythonPackage rec {
9   pname = "types-python-dateutil";
10   version = "2.9.0.20240906";
11   pyproject = true;
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-lwbDtoKEwlrf/Ecxnsx5R+W7hrN3P4Q8c5Bv1Zi8F24=";
16   };
18   nativeBuildInputs = [ setuptools ];
20   # Modules doesn't have tests
21   doCheck = false;
23   pythonImportsCheck = [ "dateutil-stubs" ];
25   meta = with lib; {
26     description = "Typing stubs for python-dateutil";
27     homepage = "https://github.com/python/typeshed";
28     license = licenses.asl20;
29     maintainers = with maintainers; [ fab ];
30   };