about summary refs log tree commit diff
path: root/pkgs/development/python-modules/wheel-filename/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/wheel-filename/default.nix')
-rw-r--r--pkgs/development/python-modules/wheel-filename/default.nix25
1 files changed, 11 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/wheel-filename/default.nix b/pkgs/development/python-modules/wheel-filename/default.nix
index fd1ec9d946a22..81a391a790938 100644
--- a/pkgs/development/python-modules/wheel-filename/default.nix
+++ b/pkgs/development/python-modules/wheel-filename/default.nix
@@ -1,11 +1,12 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, fetchpatch
-, pytestCheckHook
-, pythonOlder
-, setuptools
-, wheel
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  fetchpatch,
+  pytestCheckHook,
+  pythonOlder,
+  setuptools,
+  wheel,
 }:
 
 buildPythonPackage rec {
@@ -35,18 +36,14 @@ buildPythonPackage rec {
     wheel
   ];
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
   postPatch = ''
     substituteInPlace tox.ini \
       --replace " --cov=wheel_filename --no-cov-on-fail" ""
   '';
 
-  pythonImportsCheck = [
-    "wheel_filename"
-  ];
+  pythonImportsCheck = [ "wheel_filename" ];
 
   meta = with lib; {
     description = "Parse wheel filenames";