python3Packages.scrapy: 1.8.0 -> 2.0.1
This commit is contained in:
parent
d112ef306f
commit
fcc818acd5
1 changed files with 57 additions and 10 deletions
|
@ -1,13 +1,60 @@
|
||||||
{ stdenv, buildPythonPackage, fetchPypi, glibcLocales, mock, pytest, botocore,
|
{ stdenv
|
||||||
testfixtures, pillow, six, twisted, w3lib, lxml, queuelib, pyopenssl,
|
, buildPythonPackage
|
||||||
service-identity, parsel, pydispatcher, cssselect, lib }:
|
, isPy27
|
||||||
|
, fetchPypi
|
||||||
|
, glibcLocales
|
||||||
|
, pytest
|
||||||
|
, testfixtures
|
||||||
|
, pillow
|
||||||
|
, twisted
|
||||||
|
, cryptography
|
||||||
|
, w3lib
|
||||||
|
, lxml
|
||||||
|
, queuelib
|
||||||
|
, pyopenssl
|
||||||
|
, service-identity
|
||||||
|
, parsel
|
||||||
|
, pydispatcher
|
||||||
|
, cssselect
|
||||||
|
, zope_interface
|
||||||
|
, protego
|
||||||
|
, lib
|
||||||
|
, jmespath
|
||||||
|
, sybil
|
||||||
|
, pytest-twisted
|
||||||
|
, botocore
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
version = "1.8.0";
|
version = "2.0.1";
|
||||||
pname = "Scrapy";
|
pname = "Scrapy";
|
||||||
|
|
||||||
checkInputs = [ glibcLocales mock pytest botocore testfixtures pillow ];
|
disabled = isPy27;
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
glibcLocales
|
||||||
|
jmespath
|
||||||
|
pytest
|
||||||
|
sybil
|
||||||
|
testfixtures
|
||||||
|
pillow
|
||||||
|
pytest-twisted
|
||||||
|
botocore
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
six twisted w3lib lxml cssselect queuelib pyopenssl service-identity parsel pydispatcher
|
twisted
|
||||||
|
cryptography
|
||||||
|
cssselect
|
||||||
|
lxml
|
||||||
|
parsel
|
||||||
|
pydispatcher
|
||||||
|
pyopenssl
|
||||||
|
queuelib
|
||||||
|
service-identity
|
||||||
|
w3lib
|
||||||
|
zope_interface
|
||||||
|
protego
|
||||||
];
|
];
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
@ -25,13 +72,13 @@ buildPythonPackage rec {
|
||||||
# Ignore test_retry_dns_error because tries to resolve an invalid dns and weirdly fails with "Reactor was unclean"
|
# Ignore test_retry_dns_error because tries to resolve an invalid dns and weirdly fails with "Reactor was unclean"
|
||||||
# Ignore xml encoding test on darwin because lxml can't find encodings https://bugs.launchpad.net/lxml/+bug/707396
|
# Ignore xml encoding test on darwin because lxml can't find encodings https://bugs.launchpad.net/lxml/+bug/707396
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
substituteInPlace pytest.ini --replace "addopts = --doctest-modules" "addopts ="
|
substituteInPlace pytest.ini --replace "--doctest-modules" ""
|
||||||
pytest --ignore=tests/test_linkextractors_deprecated.py --ignore=tests/test_proxy_connect.py --deselect tests/test_crawl.py::CrawlTestCase::test_retry_dns_error ${lib.optionalString stdenv.isDarwin "--deselect tests/test_utils_iterators.py::LxmlXmliterTestCase::test_xmliter_encoding"}
|
pytest --ignore=tests/test_linkextractors_deprecated.py --ignore=tests/test_proxy_connect.py --deselect tests/test_crawl.py::CrawlTestCase::test_retry_dns_error ${lib.optionalString stdenv.isDarwin "--deselect tests/test_utils_iterators.py::LxmlXmliterTestCase::test_xmliter_encoding"}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "fe06576f9a4971de9dc0175c60fd92561e8275f2bad585c1cb5d65c5181b2db0";
|
sha256 = "85581a01f4160a103ca9906ffa4e44474f4ecd1685f0934728892c58ebf111f6";
|
||||||
};
|
};
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
@ -42,7 +89,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A fast high-level web crawling and web scraping framework, used to crawl websites and extract structured data from their pages";
|
description = "A fast high-level web crawling and web scraping framework, used to crawl websites and extract structured data from their pages";
|
||||||
homepage = https://scrapy.org/;
|
homepage = "https://scrapy.org/";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = with maintainers; [ drewkett marsam ];
|
maintainers = with maintainers; [ drewkett marsam ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
|
|
Loading…
Reference in a new issue