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

29 lines
695 B
Nix
Raw Normal View History

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