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-docutils/default.nix

29 lines
570 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-docutils";
version = "0.19.1.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-vgpRuhx90hXZ0t9m1oReY8EAm0u/TFvrh6DZdFzbqWI=";
};
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [
"docutils-stubs"
];
meta = with lib; {
description = "Typing stubs for docutils";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}