Merge pull request #88709 from r-ryantm/auto-update/python2.7-parsel

python27Packages.parsel: 1.5.2 -> 1.6.0
This commit is contained in:
Mario Rodas 2020-05-24 14:25:49 -05:00 committed by GitHub
commit fa961cec0a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,19 +8,20 @@
, w3lib
, lxml
, cssselect
, isPy27
}:
buildPythonPackage rec {
pname = "parsel";
version = "1.5.2";
version = "1.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "08v76s6s4li7asnyz8a7gbp9vz522rv5apranyv76mb0lhmjd92d";
sha256 = "0yawf9r3r863lwxj0n89i7h3n8xjbsl5b7n6xg76r68scl5yzvvh";
};
checkInputs = [ pytest pytestrunner ];
propagatedBuildInputs = [ functools32 six w3lib lxml cssselect ];
propagatedBuildInputs = [ six w3lib lxml cssselect ] ++ lib.optionals isPy27 [ functools32 ];
checkPhase = ''
py.test