diff options
Diffstat (limited to 'pkgs/development/python-modules/pymeeus/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pymeeus/default.nix | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/pymeeus/default.nix b/pkgs/development/python-modules/pymeeus/default.nix index 8799de923245..4178c593aa0b 100644 --- a/pkgs/development/python-modules/pymeeus/default.nix +++ b/pkgs/development/python-modules/pymeeus/default.nix @@ -1,8 +1,9 @@ -{ lib -, buildPythonPackage -, fetchPypi -, setuptools -, pytest7CheckHook +{ + lib, + buildPythonPackage, + fetchPypi, + setuptools, + pytest7CheckHook, }: buildPythonPackage rec { @@ -16,13 +17,9 @@ buildPythonPackage rec { hash = "sha256-VI9xhr2LlsvAac9kmo6ON33OSax0SGcJhJ/mOpnK1oQ="; }; - build-system = [ - setuptools - ]; + build-system = [ setuptools ]; - nativeCheckInputs = [ - pytest7CheckHook - ]; + nativeCheckInputs = [ pytest7CheckHook ]; meta = with lib; { homepage = "https://github.com/architest/pymeeus"; |