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

29 lines
680 B
Nix
Raw Normal View History

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