diff options
Diffstat (limited to 'pkgs/development/python-modules/polyline/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/polyline/default.nix | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/polyline/default.nix b/pkgs/development/python-modules/polyline/default.nix index 6ed2daae7e88..713b235f0f8f 100644 --- a/pkgs/development/python-modules/polyline/default.nix +++ b/pkgs/development/python-modules/polyline/default.nix @@ -1,10 +1,11 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pytestCheckHook -, pythonOlder -, setuptools -, wheel +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pytestCheckHook, + pythonOlder, + setuptools, + wheel, }: buildPythonPackage rec { @@ -31,13 +32,9 @@ buildPythonPackage rec { wheel ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "polyline" - ]; + pythonImportsCheck = [ "polyline" ]; meta = with lib; { description = "Python implementation of Google's Encoded Polyline Algorithm Format"; |
