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

29 lines
695 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.buildPythonApplication rec {
2014-10-31 13:19:33 +00:00
name = "nox-${version}";
2015-07-20 15:09:33 +00:00
version = "0.0.2";
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";
2015-07-20 15:09:33 +00:00
sha256 = "1wpxh5fhj8nx4yx4cvmc087cnf4iqwxf7zd7rdh2ln3pgxrjfral";
2014-08-08 20:07:08 +00:00
};
2015-01-09 18:34:48 +00:00
buildInputs = [ pythonPackages.pbr ];
2014-08-08 20:07:08 +00:00
propagatedBuildInputs = with pythonPackages; [
2014-09-24 11:58:41 +00:00
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;
};
}