diff --git a/pkgs/development/python-modules/cherrypy/default.nix b/pkgs/development/python-modules/cherrypy/default.nix index e9ae4bde8cc..cb3c48c0882 100644 --- a/pkgs/development/python-modules/cherrypy/default.nix +++ b/pkgs/development/python-modules/cherrypy/default.nix @@ -1,20 +1,20 @@ { lib, buildPythonPackage, fetchPypi -, cheroot, portend, routes, six -, setuptools_scm +, cheroot, contextlib2, portend, routes, six +, setuptools_scm, zc_lockfile , backports_unittest-mock, objgraph, pathpy, pytest, pytestcov , backports_functools_lru_cache, requests_toolbelt }: buildPythonPackage rec { pname = "CherryPy"; - version = "17.0.0"; + version = "17.3.0"; src = fetchPypi { inherit pname version; - sha256 = "3cdb5fbae183db49ab1f1a90643d521aa060c93f90001cc99c19d8d15b7a3fb7"; + sha256 = "c3e4d76232ade4c47666b9008f92556465df517b8dca833ece3bed027028ae7d"; }; - propagatedBuildInputs = [ cheroot portend routes six ]; + propagatedBuildInputs = [ cheroot contextlib2 portend routes six zc_lockfile ]; buildInputs = [ setuptools_scm ];