0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +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
, 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
];