mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 16:57:55 +01:00
gnu: python-scrapy: Fix indentation
* gnu/packages/python-web.scm (python-scrapy): Fix indentation.
This commit is contained in:
parent
fe9d14552a
commit
894b89c17b
1 changed files with 41 additions and 41 deletions
|
@ -6901,52 +6901,52 @@ (define-public python-scrapy
|
||||||
(name "python-scrapy")
|
(name "python-scrapy")
|
||||||
(version "2.6.1")
|
(version "2.6.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "Scrapy" version))
|
(uri (pypi-uri "Scrapy" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "09rqalbwcz9ix8h0992mzjs50sssxsmmh8w9abkrqchgknjmbzan"))))
|
(base32 "09rqalbwcz9ix8h0992mzjs50sssxsmmh8w9abkrqchgknjmbzan"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(when tests?
|
(when tests?
|
||||||
(invoke "pytest"
|
(invoke "pytest"
|
||||||
;; requires network access
|
;; requires network access
|
||||||
"--ignore" "tests/test_command_check.py"
|
"--ignore" "tests/test_command_check.py"
|
||||||
"-k"
|
"-k"
|
||||||
(string-append
|
(string-append
|
||||||
;; Failing for unknown reasons
|
;; Failing for unknown reasons
|
||||||
"not test_server_set_cookie_domain_suffix_public_private"
|
"not test_server_set_cookie_domain_suffix_public_private"
|
||||||
" and not test_user_set_cookie_domain_suffix_public_private"
|
" and not test_user_set_cookie_domain_suffix_public_private"
|
||||||
" and not test_pformat")
|
" and not test_pformat")
|
||||||
"tests")))))))
|
"tests")))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-botocore ; Optional: For S3FeedStorage class.
|
(list python-botocore ; Optional: For S3FeedStorage class.
|
||||||
python-cryptography
|
python-cryptography
|
||||||
python-cssselect
|
python-cssselect
|
||||||
python-itemadapter
|
python-itemadapter
|
||||||
python-itemloaders
|
python-itemloaders
|
||||||
python-lxml
|
python-lxml
|
||||||
python-parsel
|
python-parsel
|
||||||
python-protego
|
python-protego
|
||||||
python-pydispatcher
|
python-pydispatcher
|
||||||
python-pyopenssl
|
python-pyopenssl
|
||||||
python-queuelib
|
python-queuelib
|
||||||
python-service-identity
|
python-service-identity
|
||||||
python-setuptools
|
python-setuptools
|
||||||
python-tldextract
|
python-tldextract
|
||||||
python-twisted
|
python-twisted
|
||||||
python-w3lib
|
python-w3lib
|
||||||
python-zope-interface))
|
python-zope-interface))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pytest
|
(list python-pytest
|
||||||
python-pyftpdlib
|
python-pyftpdlib
|
||||||
python-sybil
|
python-sybil
|
||||||
python-testfixtures
|
python-testfixtures
|
||||||
python-uvloop))
|
python-uvloop))
|
||||||
(home-page "https://scrapy.org")
|
(home-page "https://scrapy.org")
|
||||||
(synopsis "High-level Web crawling and Web scraping framework")
|
(synopsis "High-level Web crawling and Web scraping framework")
|
||||||
(description "Scrapy is a fast high-level web crawling and web
|
(description "Scrapy is a fast high-level web crawling and web
|
||||||
|
|
Loading…
Reference in a new issue