depot/third_party/nixpkgs/pkgs/development/python-modules/numpydoc/default.nix
Default email 2ce89355c3 Project import generated by Copybara.
GitOrigin-RevId: 22a81aa5fc15b2d41b12f7160a71cd4a9f3c3fa1
2020-06-15 17:56:04 +02:00

26 lines
550 B
Nix

{ lib, buildPythonPackage, fetchPypi
, jinja2
, nose
, pytest
, sphinx
}:
buildPythonPackage rec {
pname = "numpydoc";
version = "1.0.0";
src = fetchPypi {
inherit pname;
inherit version;
sha256 = "e481c0799dfda208b6a2c2cb28757fa6b6cbc4d6e43722173697996cf556df7f";
};
checkInputs = [ nose pytest ];
propagatedBuildInputs = [ sphinx jinja2 ];
meta = {
description = "Sphinx extension to support docstrings in Numpy format";
homepage = "https://github.com/numpy/numpydoc";
license = lib.licenses.free;
};
}