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

29 lines
677 B
Nix
Raw Normal View History

{ lib, pythonPackages, fetchurl, git }:
2014-08-08 16:07:08 -04:00
pythonPackages.buildPythonApplication rec {
2014-10-31 09:19:33 -04:00
name = "nox-${version}";
2017-01-04 09:30:26 -05:00
version = "0.0.5";
2014-08-08 16:07:08 -04:00
namePrefix = "";
2014-10-31 09:19:33 -04:00
src = fetchurl {
url = "mirror://pypi/n/nix-nox/nix-nox-${version}.tar.gz";
2017-01-04 09:30:26 -05:00
sha256 = "1kwrkp7njxn2sqmmzy5d33d07gawbw2ab2bmfjz0y1r23z9iadf2";
2014-08-08 16:07:08 -04:00
};
buildInputs = [ pythonPackages.pbr git ];
2014-08-08 16:07:08 -04:00
propagatedBuildInputs = with pythonPackages; [
2014-09-24 07:58:41 -04:00
dogpile_cache
click
requests
2014-09-24 07:58:41 -04:00
characteristic
2014-08-08 16:07:08 -04:00
];
meta = {
homepage = https://github.com/madjar/nox;
description = "Tools to make nix nicer to use";
maintainers = [ lib.maintainers.madjar ];
platforms = lib.platforms.all;
};
}