pythonPackages.cherrypy: 17.4.1 -> 17.4.2

This commit is contained in:
Mario Rodas 2019-07-21 04:26:00 -05:00
parent 9b6ddb3c2b
commit 2354898cb2
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8

View File

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi { stdenv, buildPythonPackage, fetchPypi
, setuptools_scm , setuptools_scm
, cheroot, contextlib2, portend, routes, six, zc_lockfile , cheroot, contextlib2, portend, routes, six, zc_lockfile
, backports_unittest-mock, objgraph, pathpy, pytest, pytestcov, backports_functools_lru_cache, requests_toolbelt , backports_unittest-mock, objgraph, pathpy, pytest, pytestcov, backports_functools_lru_cache, requests_toolbelt
@ -6,12 +6,12 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "cherrypy"; pname = "cherrypy";
version = "17.4.1"; version = "17.4.2";
src = fetchPypi { src = fetchPypi {
pname = "CherryPy"; pname = "CherryPy";
inherit version; inherit version;
sha256 = "1kl17anzz535jgkn9qcy0c2m0zlafph0iv7ph3bb9mfrs2bgvagv"; sha256 = "ef1619ad161f526745d4f0e4e517753d9d985814f1280e330661333d2ba05cdf";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -25,10 +25,10 @@ buildPythonPackage rec {
]; ];
checkPhase = '' checkPhase = ''
pytest pytest ${stdenv.lib.optionalString stdenv.isDarwin "--ignore=cherrypy/test/test_wsgi_unix_socket.py"}
''; '';
meta = with lib; { meta = with stdenv.lib; {
homepage = https://www.cherrypy.org; homepage = https://www.cherrypy.org;
description = "A pythonic, object-oriented HTTP framework"; description = "A pythonic, object-oriented HTTP framework";
license = licenses.bsd3; license = licenses.bsd3;