about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/wazeroutecalculator
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/wazeroutecalculator')
-rw-r--r--nixpkgs/pkgs/development/python-modules/wazeroutecalculator/default.nix19
1 files changed, 8 insertions, 11 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/wazeroutecalculator/default.nix b/nixpkgs/pkgs/development/python-modules/wazeroutecalculator/default.nix
index 34c2430632bd..3812a83ffbfc 100644
--- a/nixpkgs/pkgs/development/python-modules/wazeroutecalculator/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/wazeroutecalculator/default.nix
@@ -1,8 +1,9 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, requests
-, pythonOlder
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  requests,
+  pythonOlder,
 }:
 
 buildPythonPackage rec {
@@ -18,16 +19,12 @@ buildPythonPackage rec {
     hash = "sha256-DB5oWthWNwamFG3kNxA/kmUBOVogoSg5LI2KrI39s4M=";
   };
 
-  propagatedBuildInputs = [
-    requests
-  ];
+  propagatedBuildInputs = [ requests ];
 
   # there are no tests
   doCheck = false;
 
-  pythonImportsCheck = [
-    "WazeRouteCalculator"
-  ];
+  pythonImportsCheck = [ "WazeRouteCalculator" ];
 
   meta = with lib; {
     description = "Calculate actual route time and distance with Waze API";