diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-04-04 21:17:10 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:29 +0200 |
commit | 400b431b03525c7607b668af6d34e6c676075de3 (patch) | |
tree | 2be376194b12adccdd90cfeb733e78cbcd99c4a4 | |
parent | 42b7d5b7775e249dd23d5d0832f092446aa6d39c (diff) | |
download | guix-400b431b03525c7607b668af6d34e6c676075de3.tar.gz guix-400b431b03525c7607b668af6d34e6c676075de3.zip |
gnu: python-itemloaders: Update to 1.3.2.
* gnu/packages/python-xyz.scm (python-itemloaders): Update to 1.3.2.
[native-inputs]: Add python-packaging.
[propagated-inputs]: Remove python-w3lib.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/python-xyz.scm | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 35c7967c62..c3fe7bee50 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -39201,17 +39201,21 @@ implementing a pre-defined interface.") (define-public python-itemloaders (package (name "python-itemloaders") - (version "1.1.0") + (version "1.3.2") (source (origin (method url-fetch) (uri (pypi-uri "itemloaders" version)) (sha256 - (base32 "0j2aw4ipalj208594x80blpgkh1i63gqqa4nb67b823av9hirn11")))) + (base32 "0w37g31n06x6v6b4w7cz3nbq4wl6cv7rrzg3fr203gw3pqx5pbsg")))) (build-system pyproject-build-system) - (native-inputs (list python-pytest python-setuptools python-wheel)) + (native-inputs + (list python-packaging + python-pytest + python-setuptools + python-wheel)) (propagated-inputs - (list python-itemadapter python-jmespath python-parsel python-w3lib)) + (list python-itemadapter python-jmespath python-parsel)) (home-page "https://github.com/scrapy/itemloaders") (synopsis "Base library for scrapy's ItemLoader") (description "Itemloaders is a library that helps you collect data |