python.pkgs.sphinx: fix pname
This is a proper fix for d2e6608aa520b17a45a39cdfbefd0240bd56b332 The pname is used by fetchPypi, so you can't just modify it and expect fetching to still work.
This commit is contained in:
parent
0470591687
commit
9dd56a9b1e
@ -28,7 +28,8 @@ buildPythonPackage rec {
|
|||||||
pname = "sphinx";
|
pname = "sphinx";
|
||||||
version = "1.7.9";
|
version = "1.7.9";
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
pname = "Sphinx";
|
||||||
|
inherit version;
|
||||||
sha256 = "217a7705adcb573da5bbe1e0f5cab4fa0bd89fd9342c9159121746f593c2d5a4";
|
sha256 = "217a7705adcb573da5bbe1e0f5cab4fa0bd89fd9342c9159121746f593c2d5a4";
|
||||||
};
|
};
|
||||||
LC_ALL = "en_US.UTF-8";
|
LC_ALL = "en_US.UTF-8";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user