about summary refs log tree commit diff
path: root/pkgs/development/python-modules/types-dateutil/default.nix
blob: c02934519ca8bb288927fb015ce1dec31626dedd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
}:

buildPythonPackage rec {
  pname = "types-dateutil";
  version = "2.9.0.20240316";
  pyproject = true;

  src = fetchPypi {
    pname = "types-python-dateutil";
    inherit version;
    hash = "sha256-XS8uJAuGkF5AlE3Xh9ttqSY/Deq+8Qdt2u15c1HsAgI=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  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 ];
  };
}