mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
python.pkgs.sphinx: fix pname
This is a proper fix for d2e6608aa5
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";
|
||||
version = "1.7.9";
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
pname = "Sphinx";
|
||||
inherit version;
|
||||
sha256 = "217a7705adcb573da5bbe1e0f5cab4fa0bd89fd9342c9159121746f593c2d5a4";
|
||||
};
|
||||
LC_ALL = "en_US.UTF-8";
|
||||
|
Loading…
Reference in New Issue
Block a user