1{ lib 2, buildPythonPackage 3, fetchPypi 4, nose 5, sphinx 6, jinja2 7}: 8 9buildPythonPackage rec { 10 pname = "numpydoc"; 11 version = "0.7.0"; 12 13 src = fetchPypi { 14 inherit pname; 15 inherit version; 16 sha256 = "2dc7b2c4e3914745e38e370946fa4c109817331e6d450806285c08bce5cd575a"; 17 }; 18 19 checkInputs = [ nose ]; 20 propagatedBuildInputs = [ sphinx jinja2 ]; 21 22 meta = { 23 description = "Sphinx extension to support docstrings in Numpy format"; 24 homepage = "https://github.com/numpy/numpydoc"; 25 license = lib.licenses.free; 26 }; 27}