1{ lib, fetchPypi, buildPythonPackage, scrapy, six }:
2
3buildPythonPackage rec {
4 pname = "scrapy-splash";
5 version = "0.8.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "a7c17735415151ae01f07b03c7624e7276a343779b3c5f4546f655f6133df42f";
10 };
11
12 propagatedBuildInputs = [ scrapy six ];
13
14 # no tests
15 doCheck = false;
16 pythonImportsCheck = [ "scrapy_splash" ];
17
18 meta = with lib; {
19 description = "Scrapy+Splash for JavaScript integration";
20 homepage = "https://github.com/scrapy-plugins/scrapy-splash";
21 license = licenses.bsd3;
22 maintainers = with maintainers; [ evanjs ];
23 };
24}