Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: dd5d488d7bb3
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ac148d40ed69
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 22, 2019

  1. Copy the full SHA
    ac148d4 View commit details
Showing with 5 additions and 1 deletion.
  1. +5 −1 pkgs/development/python-modules/pip2nix/default.nix
6 changes: 5 additions & 1 deletion pkgs/development/python-modules/pip2nix/default.nix
Original file line number Diff line number Diff line change
@@ -6,6 +6,7 @@
, contexter
, jinja2
, pytest
, pip
}:

buildPythonPackage rec {
@@ -17,7 +18,7 @@ buildPythonPackage rec {
sha256 = "ec9a71e09ac7f43cc7b6c9d386384eb7b5c331bf6ea0e72ca559d87979397a95";
};

propagatedBuildInputs = [ click configobj contexter jinja2 pytest ];
propagatedBuildInputs = [ click configobj contexter pip jinja2 pytest ];

postPatch = ''
sed -i "s/'pip>=8,<10'/'pip'/" setup.py
@@ -27,6 +28,9 @@ buildPythonPackage rec {
# tests not included with pypi release
doCheck = false;

# Requires an old pip version
broken = true;

meta = with stdenv.lib; {
description = "Generate Nix expressions for Python packages";
homepage = https://github.com/johbo/pip2nix;