Updated nox

This commit is contained in:
Georges Dubus
2014-09-24 13:58:41 +02:00
parent 204222bf4c
commit f0a8b57de8
2 changed files with 23 additions and 5 deletions
@@ -6,16 +6,18 @@ pythonPackages.buildPythonPackage rec {
src = fetchgit {
url = "git://github.com/madjar/nox.git";
rev = "49e4bb7de473ac5e446a76c292bdaefa7e20a1c6";
sha256 = "0rsw0hs5swv6lwkfmj5fw3j22ah8g5gdb0hb5ikk321c6ww5dm5p";
rev = "088249aa766c9fa929aa08a60f1a7eb41008da40";
sha256 = "0dscnmhm1va2h0jz7hh60nvjwxv5a92n5pp8c0g7hz76g67mi5xs";
leaveDotGit = true; # required by pbr
};
buildInputs = [ git pythonPackages.pbr makeWrapper ];
pythonPath =
[ pythonPackages.dogpile_cache
pythonPackages.click
pythonPath = with pythonPackages; [
dogpile_cache
click
requests2
characteristic
];
postInstall = "wrapProgram $out/bin/nox --prefix PATH : ${nix}/bin";