3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/numpydoc/default.nix

27 lines
538 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi
, jinja2
2018-02-18 18:40:53 +00:00
, nose
, pytest
2018-02-18 18:40:53 +00:00
, sphinx
}:
buildPythonPackage rec {
pname = "numpydoc";
version = "0.9.1";
2018-02-18 18:40:53 +00:00
src = fetchPypi {
inherit pname;
inherit version;
sha256 = "09x6l1a4dcvj7001bvcmcayg1nwqwhaxlwbp6kzj9qrk57lqx3z0";
2018-02-18 18:40:53 +00:00
};
checkInputs = [ nose pytest ];
2018-02-18 18:40:53 +00:00
propagatedBuildInputs = [ sphinx jinja2 ];
meta = {
description = "Sphinx extension to support docstrings in Numpy format";
homepage = "https://github.com/numpy/numpydoc";
license = lib.licenses.free;
};
}