nixpkgs/pkgs/tools/package-management/nox/default.nix
Raphael Das Gupta 139d931d4d nox: add license information: MIT
nox was licensed under MIT License
since at least 0.0.2. See
b7e084a7c5
2017-11-07 13:50:23 +02:00

32 lines
750 B
Nix

{ lib, pythonPackages, fetchurl, git }:
pythonPackages.buildPythonApplication rec {
name = "nox-${version}";
version = "0.0.6";
namePrefix = "";
src = fetchurl {
url = "mirror://pypi/n/nix-nox/nix-nox-${version}.tar.gz";
sha256 = "1qcbhdnhdhhv7q6cqdgv0q55ic8fk18526zn2yb12x9r1s0lfp9z";
};
patches = [ ./nox-review-wip.patch ];
buildInputs = [ pythonPackages.pbr git ];
propagatedBuildInputs = with pythonPackages; [
dogpile_cache
click
requests
characteristic
];
meta = {
homepage = https://github.com/madjar/nox;
description = "Tools to make nix nicer to use";
maintainers = [ lib.maintainers.madjar ];
license = lib.licenses.mit;
platforms = lib.platforms.all;
};
}