mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
Updated nox
This commit is contained in:
parent
204222bf4c
commit
f0a8b57de8
|
@ -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";
|
||||
|
|
|
@ -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}";
|
||||
|
|
Loading…
Reference in a new issue