terragrunt: 0.72.2 -> 0.72.6 (#378621)
[NixPkgs.git] / pkgs / development / python-modules / types-docutils / default.nix
blob8d60dc8a1f77ea97915d268bddc13372c25eabc6
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6 }:
8 buildPythonPackage rec {
9   pname = "types-docutils";
10   version = "0.21.0.20241128";
11   pyproject = true;
13   src = fetchPypi {
14     pname = "types_docutils";
15     inherit version;
16     hash = "sha256-TdBZgFuDrG7FoiNpkZXE6e6wRGpPfyrv8XWaSnzBdHM=";
17   };
19   build-system = [ setuptools ];
21   # Module doesn't have tests
22   doCheck = false;
24   pythonImportsCheck = [ "docutils-stubs" ];
26   meta = with lib; {
27     description = "Typing stubs for docutils";
28     homepage = "https://github.com/python/typeshed";
29     license = licenses.asl20;
30     maintainers = with maintainers; [ fab ];
31   };