Commit 148f8a02 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python310Packages.types-python-dateutil: init at 2.8.19

parent 6c8cf1e3
Loading
Loading
Loading
Loading
+29 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "types-python-dateutil";
  version = "2.8.19";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-v9PrOcclOupLojsQ9psBfTCwE2YrtL5KtIsgu9dj8wk=";
  };

  # 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -11374,6 +11374,8 @@ in {

  types-protobuf = callPackage ../development/python-modules/types-protobuf { };

  types-python-dateutil = callPackage ../development/python-modules/types-python-dateutil { };

  types-pytz = callPackage ../development/python-modules/types-pytz { };

  types-pyyaml = callPackage ../development/python-modules/types-pyyaml { };