diff options
Diffstat (limited to 'pkgs/development/python-modules/hatch-jupyter-builder/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/hatch-jupyter-builder/default.nix | 31 |
1 files changed, 13 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/hatch-jupyter-builder/default.nix b/pkgs/development/python-modules/hatch-jupyter-builder/default.nix index 0c827ac42cd3..731aeeba52ce 100644 --- a/pkgs/development/python-modules/hatch-jupyter-builder/default.nix +++ b/pkgs/development/python-modules/hatch-jupyter-builder/default.nix @@ -1,12 +1,13 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, hatchling -, pytest-mock -, pytestCheckHook -, tomli -, twine -, pythonOlder +{ + lib, + buildPythonPackage, + fetchFromGitHub, + hatchling, + pytest-mock, + pytestCheckHook, + tomli, + twine, + pythonOlder, }: buildPythonPackage rec { @@ -21,21 +22,15 @@ buildPythonPackage rec { hash = "sha256-QDWHVdjtexUNGRL+dVehdBwahSW2HmNkZKkQyuOghyI="; }; - build-system = [ - hatchling - ]; + build-system = [ hatchling ]; - dependencies = [ - hatchling - ]; + dependencies = [ hatchling ]; nativeCheckInputs = [ pytest-mock pytestCheckHook twine - ] ++ lib.optionals (pythonOlder "3.11") [ - tomli - ]; + ] ++ lib.optionals (pythonOlder "3.11") [ tomli ]; disabledTests = [ # tests pip install, which unsuprisingly fails |
