about summary refs log tree commit diff
path: root/pkgs/development/python-modules/mccabe/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/mccabe/default.nix')
-rw-r--r--pkgs/development/python-modules/mccabe/default.nix18
1 files changed, 7 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/mccabe/default.nix b/pkgs/development/python-modules/mccabe/default.nix
index 5de63b1888ac..7c556d0b382f 100644
--- a/pkgs/development/python-modules/mccabe/default.nix
+++ b/pkgs/development/python-modules/mccabe/default.nix
@@ -1,10 +1,8 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, pytest
-, hypothesis
-, hypothesmith
-, python
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  pytest,
 }:
 
 buildPythonPackage rec {
@@ -17,9 +15,7 @@ buildPythonPackage rec {
     hash = "sha256-NI4CQMM7YLvfTlIxku+RnyjLLD19XHeU90AJKQ8jYyU=";
   };
 
-  buildInputs = [
-    pytest
-  ];
+  buildInputs = [ pytest ];
 
   # https://github.com/PyCQA/mccabe/issues/93
   doCheck = false;
@@ -28,6 +24,6 @@ buildPythonPackage rec {
     description = "McCabe checker, plugin for flake8";
     homepage = "https://github.com/flintwork/mccabe";
     license = licenses.mit;
-    maintainers = with maintainers; [ ];
+    maintainers = [ ];
   };
 }