Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python.pkgs.numpydoc: 0.6.0 -> 0.7.0

+28 -19
+27
pkgs/development/python-modules/numpydoc/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , nose 5 + , sphinx 6 + , jinja2 7 + }: 8 + 9 + buildPythonPackage 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 + }
+1 -19
pkgs/top-level/python-packages.nix
··· 11430 11430 blas = pkgs.openblasCompat; 11431 11431 }; 11432 11432 11433 - numpydoc = buildPythonPackage rec { 11434 - pname = "numpydoc"; 11435 - name = "${pname}-${version}"; 11436 - version = "0.6.0"; 11437 - 11438 - src = pkgs.fetchurl { 11439 - url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz"; 11440 - sha256 = "1ec573e91f6d868a9940d90a6599f3e834a2d6c064030fbe078d922ee21dcfa1"; 11441 - }; 11442 - 11443 - buildInputs = [ self.nose ]; 11444 - propagatedBuildInputs = [ self.sphinx self.matplotlib ]; 11445 - 11446 - meta = { 11447 - description = "Sphinx extension to support docstrings in Numpy format"; 11448 - homepage = "https://github.com/numpy/numpydoc"; 11449 - license = licenses.free; 11450 - }; 11451 - }; 11433 + numpydoc = callPackage ../development/python-modules/numpydoc { }; 11452 11434 11453 11435 numpy-stl = callPackage ../development/python-modules/numpy-stl { }; 11454 11436