Files
nixpkgs/pkgs/by-name/no/nox/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

42 lines
847 B
Nix

{
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;
};
}