summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/overpy/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/overpy/default.nix')
-rw-r--r--pkgs/development/python-modules/overpy/default.nix21
1 files changed, 9 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/overpy/default.nix b/pkgs/development/python-modules/overpy/default.nix
index 37abe9551117..ad08945d95e3 100644
--- a/pkgs/development/python-modules/overpy/default.nix
+++ b/pkgs/development/python-modules/overpy/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, fetchpatch
-, pytestCheckHook
-, pythonOlder
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ fetchpatch,
+ pytestCheckHook,
+ pythonOlder,
}:
buildPythonPackage rec {
@@ -28,13 +29,9 @@ buildPythonPackage rec {
})
];
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
- pythonImportsCheck = [
- "overpy"
- ];
+ pythonImportsCheck = [ "overpy" ];
meta = with lib; {
description = "Python Wrapper to access the Overpass API";