nixpkgs/pkgs/development/python-modules/nox/default.nix

68 lines
1.2 KiB
Nix

{ lib
, argcomplete
, buildPythonPackage
, colorlog
, fetchFromGitHub
, hatchling
, importlib-metadata
, jinja2
, packaging
, pytestCheckHook
, pythonOlder
, tox
, typing-extensions
, virtualenv
}:
buildPythonPackage rec {
pname = "nox";
version = "2023.04.22";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "wntrblm";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-WuyNp3jxIktI72zbk+1CK8xflTKrYE5evn/gVdMx+cQ=";
};
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [
argcomplete
colorlog
packaging
virtualenv
] ++ lib.optionals (pythonOlder "3.8") [
typing-extensions
importlib-metadata
];
checkInputs = [
jinja2
tox
pytestCheckHook
];
pythonImportsCheck = [
"nox"
];
disabledTestPaths = [
# AttributeError: module 'tox.config' has...
"tests/test_tox_to_nox.py"
];
meta = with lib; {
description = "Flexible test automation for Python";
homepage = "https://nox.thea.codes/";
changelog = "https://github.com/wntrblm/nox/blob/${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ doronbehar fab ];
};
}