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:
Frederik Rietdijk 2018-11-21 12:52:17 +01:00
parent 0470591687
commit 9dd56a9b1e

View file

@ -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";