pbr: 0.9.0 -> 1.6.0
This commit is contained in:
parent
523cd395c7
commit
f5f24ce884
1 changed files with 5 additions and 6 deletions
|
@ -9277,19 +9277,18 @@ let
|
|||
};
|
||||
|
||||
pbr = buildPythonPackage rec {
|
||||
name = "pbr-0.9.0";
|
||||
name = "pbr-1.6.0";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/p/pbr/${name}.tar.gz";
|
||||
sha256 = "e5a57c434b1faa509a00bf458d2c7af965199d9cced3d05a547bff9880f7e8cb";
|
||||
sha256 = "1lg1klrczvzfan89y3bl9ykrknl3nb01vvai37fkww24apzyibjf";
|
||||
};
|
||||
|
||||
# pip depend on $HOME setting
|
||||
preConfigure = "export HOME=$TMPDIR";
|
||||
|
||||
doCheck = false;
|
||||
|
||||
buildInputs = with self; [ pip ];
|
||||
propagatedBuildInputs = with self; [ pip ];
|
||||
buildInputs = with self; [ virtualenv ]
|
||||
++ stdenv.lib.optional doCheck testtools;
|
||||
|
||||
meta = {
|
||||
description = "Python Build Reasonableness";
|
||||
|
|
Loading…
Reference in a new issue