python3Packages.pyquery: 1.2.9 -> 1.4.3

This commit is contained in:
Fabian Affolter 2021-02-22 23:31:40 +01:00
parent d4e485f428
commit 088d797f12

View File

@ -1,14 +1,15 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi
, cssselect , cssselect
, fetchPypi
, lxml , lxml
, webob , pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyquery"; pname = "pyquery";
version = "1.2.9"; version = "1.4.3";
disabled = pythonOlder "3.5";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
@ -16,15 +17,19 @@ buildPythonPackage rec {
sha256 = "00p6f1dfma65192hc72dxd506491lsq3g5wgxqafi1xpg2w1xia6"; sha256 = "00p6f1dfma65192hc72dxd506491lsq3g5wgxqafi1xpg2w1xia6";
}; };
propagatedBuildInputs = [ cssselect lxml webob ]; propagatedBuildInputs = [
cssselect
lxml
];
# circular dependency on webtest # circular dependency on webtest
doCheck = false; doCheck = false;
pythonImportsCheck = [ "pyquery" ];
meta = with lib; { meta = with lib; {
description = "A jquery-like library for Python";
homepage = "https://github.com/gawel/pyquery"; homepage = "https://github.com/gawel/pyquery";
description = "A jquery-like library for python"; changelog = "https://github.com/gawel/pyquery/blob/${version}/CHANGES.rst";
license = licenses.bsd0; license = licenses.bsd0;
}; };
} }