diff options
Diffstat (limited to 'pkgs/development/python-modules/rjpl/default.nix')
-rw-r--r-- | pkgs/development/python-modules/rjpl/default.nix | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/rjpl/default.nix b/pkgs/development/python-modules/rjpl/default.nix index 8d5cfbc92aae..439d207aa58d 100644 --- a/pkgs/development/python-modules/rjpl/default.nix +++ b/pkgs/development/python-modules/rjpl/default.nix @@ -1,8 +1,9 @@ -{ lib -, buildPythonPackage -, requests -, fetchPypi -, pythonOlder +{ + lib, + buildPythonPackage, + requests, + fetchPypi, + pythonOlder, }: buildPythonPackage rec { @@ -17,16 +18,12 @@ buildPythonPackage rec { hash = "sha256-GLNIpZuM3yuCnPyjBa8KjdaL5cFK8InluuY+LTCrimc="; }; - propagatedBuildInputs = [ - requests - ]; + propagatedBuildInputs = [ requests ]; # Module has no tests doCheck = false; - pythonImportsCheck = [ - "rjpl" - ]; + pythonImportsCheck = [ "rjpl" ]; meta = with lib; { description = "Library for interacting with the Rejseplanen API"; |