1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00

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 {
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";

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 {
version = "2.4.4";
name = "cheetah-${version}";