python: CherryPy: 17.0.0 -> 17.3.0

This commit is contained in:
Frederik Rietdijk 2018-08-25 07:43:57 +02:00
parent e2d4d0a3b5
commit a6e0625f37

View File

@ -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 ];