pypi2nix: 1.5.0 -> 1.6.0
This commit is contained in:
parent
c23032a8b1
commit
e08f7afc62
@ -1,13 +1,13 @@
|
|||||||
{ stdenv, fetchurl, python, zip, makeWrapper
|
{ stdenv, fetchurl, python, zip, makeWrapper, nix, nix-prefetch-scripts
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
version = "1.5.0";
|
version = "1.6.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/garbas/pypi2nix/archive/v${version}.tar.gz";
|
url = "https://github.com/garbas/pypi2nix/archive/v${version}.tar.gz";
|
||||||
sha256 = "0s79pp7gkgyk7discnv94m6z81fd67p66rdbd4cwk1ma0qljlh2k";
|
sha256 = "08iad1ad2gnvsnd66ddw3lff19ms2yly4iq63c8800j603d0pdhn";
|
||||||
};
|
};
|
||||||
|
|
||||||
click = fetchurl {
|
click = fetchurl {
|
||||||
@ -16,8 +16,8 @@ let
|
|||||||
};
|
};
|
||||||
|
|
||||||
requests = fetchurl {
|
requests = fetchurl {
|
||||||
url = "https://pypi.python.org/packages/2e/ad/e627446492cc374c284e82381215dcd9a0a87c4f6e90e9789afefe6da0ad/requests-2.11.1.tar.gz";
|
url = "https://pypi.python.org/packages/5b/0b/34be574b1ec997247796e5d516f3a6b6509c4e064f2885a96ed885ce7579/requests-2.12.4.tar.gz";
|
||||||
sha256 = "0cx1w7m4cpslxz9jljxv0l9892ygrrckkiwpp2hangr8b01rikss";
|
sha256 = "0d5fwxmw4ibynk3imph3n4n84m0n3ib1vj339fxhkqri0qd4767d";
|
||||||
};
|
};
|
||||||
|
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
@ -27,7 +27,7 @@ in stdenv.mkDerivation rec {
|
|||||||
click
|
click
|
||||||
requests
|
requests
|
||||||
];
|
];
|
||||||
buildInputs = [ python zip makeWrapper ];
|
buildInputs = [ python zip makeWrapper nix.out nix-prefetch-scripts ];
|
||||||
sourceRoot = ".";
|
sourceRoot = ".";
|
||||||
|
|
||||||
postUnpack = ''
|
postUnpack = ''
|
||||||
@ -45,6 +45,11 @@ in stdenv.mkDerivation rec {
|
|||||||
fi
|
fi
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
patchPhase = ''
|
||||||
|
sed -i -e "s|default='nix-shell',|default='${nix.out}/bin/nix-shell',|" $out/pkgs/pypi2nix/cli.py
|
||||||
|
sed -i -e "s|nix-prefetch-git|${nix-prefetch-scripts}/bin/nix-prefetch-git|" $out/pkgs/pypi2nix/stage2.py
|
||||||
|
'';
|
||||||
|
|
||||||
commonPhase = ''
|
commonPhase = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user