From 3a56a640c83227a94a5b3c2b0b33ffde3e3fafa6 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 24 Feb 2024 14:27:28 +0100 Subject: [PATCH] python311Packages.cherrypy: 18.8.0 -> 18.9.0 Changelog: https://github.com/cherrypy/cherrypy/blob/v18.9.0/CHANGES.rst --- pkgs/development/python-modules/cherrypy/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/cherrypy/default.nix b/pkgs/development/python-modules/cherrypy/default.nix index c653533f60d3..d68fcf565984 100644 --- a/pkgs/development/python-modules/cherrypy/default.nix +++ b/pkgs/development/python-modules/cherrypy/default.nix @@ -25,7 +25,7 @@ buildPythonPackage rec { pname = "cherrypy"; - version = "18.8.0"; + version = "18.9.0"; pyproject = true; disabled = pythonOlder "3.7"; @@ -33,10 +33,12 @@ buildPythonPackage rec { src = fetchPypi { pname = "CherryPy"; inherit version; - hash = "sha256-m0jPuoovFtW2QZzGV+bVHbAFujXF44JORyi7A7vH75s="; + hash = "sha256-awbBkc5xqGRh8wVyoatX/8CfQxQ7qOQsEDx7M0ciDrE="; }; postPatch = '' + substituteInPlace pyproject.toml \ + --replace-fail '"setuptools_scm_git_archive >= 1.1",' "" # Disable doctest plugin because times out substituteInPlace pytest.ini \ --replace-fail "--doctest-modules" "-vvv" \