python.pkgs.pip2nix: mark as broken

This commit is contained in:
Frederik Rietdijk 2019-10-22 13:32:56 +02:00
parent dd5d488d7b
commit ac148d40ed

View File

@ -6,6 +6,7 @@
, contexter , contexter
, jinja2 , jinja2
, pytest , pytest
, pip
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -17,7 +18,7 @@ buildPythonPackage rec {
sha256 = "ec9a71e09ac7f43cc7b6c9d386384eb7b5c331bf6ea0e72ca559d87979397a95"; sha256 = "ec9a71e09ac7f43cc7b6c9d386384eb7b5c331bf6ea0e72ca559d87979397a95";
}; };
propagatedBuildInputs = [ click configobj contexter jinja2 pytest ]; propagatedBuildInputs = [ click configobj contexter pip jinja2 pytest ];
postPatch = '' postPatch = ''
sed -i "s/'pip>=8,<10'/'pip'/" setup.py sed -i "s/'pip>=8,<10'/'pip'/" setup.py
@ -27,6 +28,9 @@ buildPythonPackage rec {
# tests not included with pypi release # tests not included with pypi release
doCheck = false; doCheck = false;
# Requires an old pip version
broken = true;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Generate Nix expressions for Python packages"; description = "Generate Nix expressions for Python packages";
homepage = https://github.com/johbo/pip2nix; homepage = https://github.com/johbo/pip2nix;