1{ lib, fetchPypi, buildPythonPackage, scrapy, six }:
2
3buildPythonPackage rec {
4 pname = "scrapy-splash";
5 version = "0.9.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 hash = "sha256-7PEwJk3AjgxGHIYH7K13dGimStAd7bJinA+BvV/NcpU=";
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}