17 buildPythonPackage rec {
19 version = "2023.04.22";
22 disabled = pythonOlder "3.7";
24 src = fetchFromGitHub {
27 rev = "refs/tags/${version}";
28 hash = "sha256-WuyNp3jxIktI72zbk+1CK8xflTKrYE5evn/gVdMx+cQ=";
35 propagatedBuildInputs = [
40 ] ++ lib.optionals (pythonOlder "3.8") [
51 pythonImportsCheck = [
56 # AttributeError: module 'tox.config' has...
57 "tests/test_tox_to_nox.py"
61 description = "Flexible test automation for Python";
62 homepage = "https://nox.thea.codes/";
63 changelog = "https://github.com/wntrblm/nox/blob/${version}/CHANGELOG.md";
64 license = licenses.asl20;
65 maintainers = with maintainers; [ doronbehar fab ];