summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-05-20 23:14:15 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2022-05-20 23:14:15 +0200
commit9d1932e38b4047daa8bd5f2e57c524f622315f9e (patch)
tree55369366f70ba93c32adc266b5785306274b2b13
parent6895219b618c25e6db5d258105626d95ece4819f (diff)
downloadnixpkgs-9d1932e38b4047daa8bd5f2e57c524f622315f9e.tar
nixpkgs-9d1932e38b4047daa8bd5f2e57c524f622315f9e.tar.gz
nixpkgs-9d1932e38b4047daa8bd5f2e57c524f622315f9e.tar.bz2
nixpkgs-9d1932e38b4047daa8bd5f2e57c524f622315f9e.tar.lz
nixpkgs-9d1932e38b4047daa8bd5f2e57c524f622315f9e.tar.xz
nixpkgs-9d1932e38b4047daa8bd5f2e57c524f622315f9e.tar.zst
nixpkgs-9d1932e38b4047daa8bd5f2e57c524f622315f9e.zip
prospector: relax requirements-detector constraint
-rw-r--r--pkgs/development/tools/prospector/default.nix23
1 files changed, 14 insertions, 9 deletions
diff --git a/pkgs/development/tools/prospector/default.nix b/pkgs/development/tools/prospector/default.nix
index 0d6e5de4cfe..5458df424b1 100644
--- a/pkgs/development/tools/prospector/default.nix
+++ b/pkgs/development/tools/prospector/default.nix
@@ -1,5 +1,5 @@
 { lib
-, pkgs
+, fetchFromGitHub
 , python3
 }:
 
@@ -14,21 +14,15 @@ buildPythonApplication rec {
   version = "1.7.7";
   format = "pyproject";
 
-  disabled = pythonOlder "3.6.1";
+  disabled = pythonOlder "3.7";
 
-  src = pkgs.fetchFromGitHub {
+  src = fetchFromGitHub {
     owner = "PyCQA";
     repo = pname;
     rev = version;
     hash = "sha256-sbPZmVeJtNphtjuZEfKcUgty9bJ3E/2Ya9RuX3u/XEs=";
   };
 
-  postPatch = ''
-    substituteInPlace pyproject.toml \
-      --replace 'pep8-naming = ">=0.3.3,<=0.10.0"' 'pep8-naming = "*"' \
-      --replace 'mccabe = "^0.6.0"' 'mccabe = "*"'
-  '';
-
   nativeBuildInputs = [
     poetry-core
   ];
@@ -60,6 +54,17 @@ buildPythonApplication rec {
     pytestCheckHook
   ];
 
+  postPatch = ''
+    substituteInPlace pyproject.toml \
+      --replace 'requirements-detector = "^0.7"' 'requirements-detector = "*"' \
+      --replace 'pep8-naming = ">=0.3.3,<=0.10.0"' 'pep8-naming = "*"' \
+      --replace 'mccabe = "^0.6.0"' 'mccabe = "*"'
+  '';
+
+  pythonImportsCheck = [
+    "prospector"
+  ];
+
   meta = with lib; {
     description = "Tool to analyse Python code and output information about errors, potential problems, convention violations and complexity";
     homepage = "https://github.com/PyCQA/prospector";