mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
python3Packages.pyroma: don't pin pygments
According to setup.py, pin only ensures compatibility with Python 2.7.
This commit is contained in:
parent
6906e5dd53
commit
3421de9e6d
1 changed files with 5 additions and 0 deletions
|
@ -11,6 +11,11 @@ buildPythonPackage rec {
|
||||||
sha256 = "2527423e3a24ccd56951f3ce1b0ebbcc4fa0518c82fca882e696c78726ab9c2f";
|
sha256 = "2527423e3a24ccd56951f3ce1b0ebbcc4fa0518c82fca882e696c78726ab9c2f";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace setup.py \
|
||||||
|
--replace "pygments < 2.6" "pygments"
|
||||||
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = [ docutils pygments setuptools ];
|
propagatedBuildInputs = [ docutils pygments setuptools ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue