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

32 lines
750 B
Nix
Raw Normal View History

{ lib, pythonPackages, fetchurl, git }:
2014-08-08 22:07:08 +02:00
pythonPackages.buildPythonApplication rec {
2014-10-31 14:19:33 +01:00
name = "nox-${version}";
2017-09-16 20:14:34 +02:00
version = "0.0.6";
2014-08-08 22:07:08 +02:00
namePrefix = "";
2014-10-31 14:19:33 +01:00
src = fetchurl {
url = "mirror://pypi/n/nix-nox/nix-nox-${version}.tar.gz";
2017-09-16 20:14:34 +02:00
sha256 = "1qcbhdnhdhhv7q6cqdgv0q55ic8fk18526zn2yb12x9r1s0lfp9z";
2014-08-08 22:07:08 +02:00
};
patches = [ ./nox-review-wip.patch ];
buildInputs = [ pythonPackages.pbr git ];
2014-08-08 22:07:08 +02:00
propagatedBuildInputs = with pythonPackages; [
2014-09-24 13:58:41 +02:00
dogpile_cache
click
requests
2014-09-24 13:58:41 +02:00
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 ];
license = lib.licenses.mit;
2014-08-08 22:07:08 +02:00
platforms = lib.platforms.all;
};
}