0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

python3Packages.restview: 2.9.3 -> 3.0.0

This commit is contained in:
Fabian Affolter 2022-01-14 01:20:32 +01:00 committed by Jonathan Ringer
parent 2b7f369026
commit 285a0f7042

View file

@ -5,18 +5,20 @@
, readme_renderer , readme_renderer
, packaging , packaging
, pygments , pygments
, mock
, pytestCheckHook , pytestCheckHook
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "restview"; pname = "restview";
version = "2.9.3"; version = "3.0.0";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-WVGqIYLnqao6uQbb0PDTPfj+k+ZjGKholknBIorXTNg="; sha256 = "sha256-K5iWEKrtL9Qtpk9s3FOc8+5wzjcLy6hy23JCGtUV3R4=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -27,7 +29,6 @@ buildPythonPackage rec {
]; ];
checkInputs = [ checkInputs = [
mock
pytestCheckHook pytestCheckHook
]; ];