1{
2 lib,
3 fetchPypi,
4 buildPythonPackage,
5 scrapy,
6 six,
7}:
8
9buildPythonPackage rec {
10 pname = "scrapy-splash";
11 version = "0.9.0";
12 format = "setuptools";
13
14 src = fetchPypi {
15 inherit pname version;
16 hash = "sha256-7PEwJk3AjgxGHIYH7K13dGimStAd7bJinA+BvV/NcpU=";
17 };
18
19 propagatedBuildInputs = [
20 scrapy
21 six
22 ];
23
24 # no tests
25 doCheck = false;
26 pythonImportsCheck = [ "scrapy_splash" ];
27
28 meta = with lib; {
29 description = "Scrapy+Splash for JavaScript integration";
30 homepage = "https://github.com/scrapy-plugins/scrapy-splash";
31 license = licenses.bsd3;
32 maintainers = with maintainers; [ evanjs ];
33 };
34}