Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
847 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
python3Packages,
fetchurl,
}:
python3Packages.buildPythonApplication rec {
pname = "nox";
version = "0.0.6";
pyproject = true;
src = fetchurl {
url = "mirror://pypi/n/nix-nox/nix-nox-${version}.tar.gz";
sha256 = "1qcbhdnhdhhv7q6cqdgv0q55ic8fk18526zn2yb12x9r1s0lfp9z";
};
patches = [ ./nox-review-wip.patch ];
build-system = with python3Packages; [
setuptools
pbr
];
dependencies = with python3Packages; [
dogpile-cache
click
requests
characteristic
setuptools # pkg_resources is imported during runtime
];
pythonImportsCheck = [ "nox" ];
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;
};
}