about summary refs log tree commit diff
path: root/pkgs/development/python-modules/restview
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-01-14 01:20:32 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-01-13 16:26:50 -0800
commit285a0f7042fcdbfa14a5151970f553250c537be0 (patch)
tree0d299802ad35e67fdbf568fcc67d6196dbac5ee1 /pkgs/development/python-modules/restview
parent2b7f36902600d22d11ddffe39f2e701e77552ea4 (diff)
python3Packages.restview: 2.9.3 -> 3.0.0
Diffstat (limited to 'pkgs/development/python-modules/restview')
-rw-r--r--pkgs/development/python-modules/restview/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/restview/default.nix b/pkgs/development/python-modules/restview/default.nix
index b25b28eca943c..9a4a0f13369ed 100644
--- a/pkgs/development/python-modules/restview/default.nix
+++ b/pkgs/development/python-modules/restview/default.nix
@@ -5,18 +5,20 @@
 , readme_renderer
 , packaging
 , pygments
-, mock
 , pytestCheckHook
+, pythonOlder
 }:
 
 buildPythonPackage rec {
   pname = "restview";
-  version = "2.9.3";
+  version = "3.0.0";
   format = "setuptools";
 
+  disabled = pythonOlder "3.6";
+
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-WVGqIYLnqao6uQbb0PDTPfj+k+ZjGKholknBIorXTNg=";
+    sha256 = "sha256-K5iWEKrtL9Qtpk9s3FOc8+5wzjcLy6hy23JCGtUV3R4=";
   };
 
   propagatedBuildInputs = [
@@ -27,7 +29,6 @@ buildPythonPackage rec {
   ];
 
   checkInputs = [
-    mock
     pytestCheckHook
   ];