nixpkgs/pkgs/tools/package-management/nox/default.nix

31 lines
717 B
Nix
Raw Normal View History

2015-01-09 18:34:48 +00:00
{ lib, pythonPackages, fetchurl }:
2014-08-08 20:07:08 +00:00
pythonPackages.buildPythonPackage rec {
2014-10-31 13:19:33 +00:00
name = "nox-${version}";
version = "0.0.1";
2014-08-08 20:07:08 +00:00
namePrefix = "";
2014-10-31 13:19:33 +00:00
src = fetchurl {
url = "https://pypi.python.org/packages/source/n/nix-nox/nix-nox-${version}.tar.gz";
sha256 = "1s1jhickdhym70qrb5h4qxq1mvkpwgdppqpfb2jnpfaf1az6c207";
2014-08-08 20:07:08 +00:00
};
patches = [ ./show-trace.patch ];
2015-01-09 18:34:48 +00:00
buildInputs = [ pythonPackages.pbr ];
2014-08-08 20:07:08 +00:00
2014-09-24 11:58:41 +00:00
pythonPath = with pythonPackages; [
dogpile_cache
click
requests2
characteristic
2014-08-08 20:07:08 +00:00
];
meta = {
homepage = https://github.com/madjar/nox;
description = "Tools to make nix nicer to use";
maintainers = [ lib.maintainers.madjar ];
platforms = lib.platforms.all;
};
}