Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 26 lines 550 B view raw
1{ lib, buildPythonPackage, fetchPypi 2, jinja2 3, nose 4, pytest 5, sphinx 6}: 7 8buildPythonPackage rec { 9 pname = "numpydoc"; 10 version = "0.9.2"; 11 12 src = fetchPypi { 13 inherit pname; 14 inherit version; 15 sha256 = "9140669e6b915f42c6ce7fef704483ba9b0aaa9ac8e425ea89c76fe40478f642"; 16 }; 17 18 checkInputs = [ nose pytest ]; 19 propagatedBuildInputs = [ sphinx jinja2 ]; 20 21 meta = { 22 description = "Sphinx extension to support docstrings in Numpy format"; 23 homepage = "https://github.com/numpy/numpydoc"; 24 license = lib.licenses.free; 25 }; 26}