diff options
Diffstat (limited to 'pkgs/development/python-modules/sanix/default.nix')
-rw-r--r-- | pkgs/development/python-modules/sanix/default.nix | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/sanix/default.nix b/pkgs/development/python-modules/sanix/default.nix index 64fd15074556..8f807fdd4ae2 100644 --- a/pkgs/development/python-modules/sanix/default.nix +++ b/pkgs/development/python-modules/sanix/default.nix @@ -1,9 +1,10 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pythonOlder -, requests -, setuptools +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pythonOlder, + requests, + setuptools, }: buildPythonPackage rec { @@ -20,13 +21,9 @@ buildPythonPackage rec { hash = "sha256-D2w3hmL8ym63liWOYdZS4ry3lJ0utbbYGagWoOTT1TQ="; }; - build-system = [ - setuptools - ]; + build-system = [ setuptools ]; - dependencies = [ - requests - ]; + dependencies = [ requests ]; # Module has no tests doCheck = false; |