2018-06-23 15:27:58 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, glibcLocales, mock, pytest, botocore,
|
2017-02-15 23:01:38 +01:00
|
|
|
testfixtures, pillow, six, twisted, w3lib, lxml, queuelib, pyopenssl,
|
|
|
|
service-identity, parsel, pydispatcher, cssselect, lib }:
|
|
|
|
buildPythonPackage rec {
|
2018-07-22 12:20:29 +02:00
|
|
|
version = "1.5.1";
|
2018-06-23 15:27:58 +02:00
|
|
|
pname = "Scrapy";
|
2017-02-15 23:01:38 +01:00
|
|
|
|
2018-06-23 15:27:58 +02:00
|
|
|
checkInputs = [ glibcLocales mock pytest botocore testfixtures pillow ];
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
six twisted w3lib lxml cssselect queuelib pyopenssl service-identity parsel pydispatcher
|
|
|
|
];
|
2017-02-15 23:01:38 +01:00
|
|
|
|
2018-06-23 15:27:58 +02:00
|
|
|
# Scrapy is usually installed via pip where copying all
|
|
|
|
# permissions makes sense. In Nix the files copied are owned by
|
|
|
|
# root and readonly. As a consequence scrapy can't edit the
|
|
|
|
# project templates.
|
|
|
|
patches = [ ./permissions-fix.patch ];
|
2017-02-15 23:01:38 +01:00
|
|
|
|
2018-06-23 15:27:58 +02:00
|
|
|
LC_ALL="en_US.UTF-8";
|
2017-02-15 23:01:38 +01:00
|
|
|
|
2018-06-23 15:27:58 +02:00
|
|
|
checkPhase = ''
|
|
|
|
py.test --ignore=tests/test_linkextractors_deprecated.py --ignore=tests/test_proxy_connect.py ${lib.optionalString stdenv.isDarwin "--ignore=tests/test_utils_iterators.py"}
|
|
|
|
# The ignored tests require mitmproxy, which depends on protobuf, but it's disabled on Python3
|
|
|
|
# Ignore iteration test, because lxml can't find encodings on darwin https://bugs.launchpad.net/lxml/+bug/707396
|
|
|
|
'';
|
2017-02-15 23:01:38 +01:00
|
|
|
|
2018-06-23 15:27:58 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-07-22 12:20:29 +02:00
|
|
|
sha256 = "5a398bf6818f87dcc817c919408a195f19ba46414ae12f259119336cfa862bb6";
|
2018-06-23 15:27:58 +02:00
|
|
|
};
|
2017-02-15 23:01:38 +01:00
|
|
|
|
2018-06-23 15:27:58 +02:00
|
|
|
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";
|
2018-06-29 21:06:39 +02:00
|
|
|
homepage = https://scrapy.org/;
|
2018-06-23 15:27:58 +02:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ drewkett ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2017-02-15 23:01:38 +01:00
|
|
|
}
|