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

View File

@ -6,16 +6,18 @@ pythonPackages.buildPythonPackage rec {
src = fetchgit { src = fetchgit {
url = "git://github.com/madjar/nox.git"; url = "git://github.com/madjar/nox.git";
rev = "49e4bb7de473ac5e446a76c292bdaefa7e20a1c6"; rev = "088249aa766c9fa929aa08a60f1a7eb41008da40";
sha256 = "0rsw0hs5swv6lwkfmj5fw3j22ah8g5gdb0hb5ikk321c6ww5dm5p"; sha256 = "0dscnmhm1va2h0jz7hh60nvjwxv5a92n5pp8c0g7hz76g67mi5xs";
leaveDotGit = true; # required by pbr leaveDotGit = true; # required by pbr
}; };
buildInputs = [ git pythonPackages.pbr makeWrapper ]; buildInputs = [ git pythonPackages.pbr makeWrapper ];
pythonPath = pythonPath = with pythonPackages; [
[ pythonPackages.dogpile_cache dogpile_cache
pythonPackages.click click
requests2
characteristic
]; ];
postInstall = "wrapProgram $out/bin/nox --prefix PATH : ${nix}/bin"; postInstall = "wrapProgram $out/bin/nox --prefix PATH : ${nix}/bin";

View File

@ -1166,6 +1166,22 @@ let
}; };
characteristic = buildPythonPackage rec {
name = "characteristic-14.1.0";
src = fetchurl {
url = "https://pypi.python.org/packages/source/c/characteristic/${name}.tar.gz";
md5 = "68ea7e28997fc57d3631791ec0567a05";
};
buildInputs = [ pythonPackages.pytest ];
meta = {
description = "Python attributes without boilerplate";
homepage = https://characteristic.readthedocs.org;
};
};
cheetah = buildPythonPackage rec { cheetah = buildPythonPackage rec {
version = "2.4.4"; version = "2.4.4";
name = "cheetah-${version}"; name = "cheetah-${version}";