17 buildPythonPackage rec {
19 version = "2024.04.15";
22 disabled = pythonOlder "3.7";
24 src = fetchFromGitHub {
27 rev = "refs/tags/${version}";
28 hash = "sha256-PagZR2IdS1gS/ukl4b0Al9sdEsFnFwP8oy0eOGKJHMs=";
35 propagatedBuildInputs = [
40 ] ++ lib.optionals (pythonOlder "3.8") [
51 pythonImportsCheck = [
56 # our conda is not available on 3.11
57 "test__create_venv_options"
61 # AttributeError: module 'tox.config' has...
62 "tests/test_tox_to_nox.py"
66 description = "Flexible test automation for Python";
67 homepage = "https://nox.thea.codes/";
68 changelog = "https://github.com/wntrblm/nox/blob/${version}/CHANGELOG.md";
69 license = licenses.asl20;
70 maintainers = with maintainers; [ doronbehar fab ];