me
/
guix
Archived
1
0
Fork 0

gnu: python-parsel: Update to 1.8.1.

* gnu/packages/python-web.scm (python-parsel): Update to 1.8.1.
[build-system]: Use pyproject-build-system.
[propagated-inputs]: Add python-jmespath, python-typing-extensions.  Remove
python-six.
[native-inputs]: Add python-psutil.  Remove python-pytest-runner.
master
Vinicius Monego 2023-08-06 11:30:36 -03:00
parent ef85f62478
commit 19617735df
No known key found for this signature in database
GPG Key ID: 637B0B138065B68A
1 changed files with 6 additions and 5 deletions

View File

@ -8039,21 +8039,22 @@ by asyncio.")
(define-public python-parsel (define-public python-parsel
(package (package
(name "python-parsel") (name "python-parsel")
(version "1.6.0") (version "1.8.1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "parsel" version)) (uri (pypi-uri "parsel" version))
(sha256 (sha256
(base32 "0yawf9r3r863lwxj0n89i7h3n8xjbsl5b7n6xg76r68scl5yzvvh")))) (base32 "0f8yh30y3961a7kqwcnp4j3s7044ilakykiavc0skwdkr5l8xwmg"))))
(build-system python-build-system) (build-system pyproject-build-system)
(propagated-inputs (propagated-inputs
(list python-cssselect (list python-cssselect
python-jmespath
python-lxml python-lxml
python-six python-typing-extensions
python-w3lib)) python-w3lib))
(native-inputs (native-inputs
(list python-pytest python-pytest-runner)) (list python-psutil python-pytest))
(home-page "https://github.com/scrapy/parsel") (home-page "https://github.com/scrapy/parsel")
(synopsis "Extract data from HTML and XML using XPath and CSS selectors") (synopsis "Extract data from HTML and XML using XPath and CSS selectors")
(description "Parsel is a library to extract and remove data from (description "Parsel is a library to extract and remove data from