summary refs log tree commit diff
path: root/pkgs/development/python-modules/scrapy-splash/default.nix
blob: ab00377f4a0ebf5b5bb867f16aead05a6cc71b0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, lib, fetchPypi, buildPythonPackage, scrapy, six }:

buildPythonPackage rec {
  pname = "scrapy-splash";
  version = "0.7.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1dg7csdza2hzqskd9b9gx0v3saqsch4f0fwdp0a3p0822aqqi488";
  };

  propagatedBuildInputs = [ scrapy six ];

  # no tests
  doCheck = false;
  pythonImportsCheck = [ "scrapy_splash" ];

  meta = with lib; {
    description = "Scrapy+Splash for JavaScript integration";
    homepage = "https://github.com/scrapy-plugins/scrapy-splash";
    license = licenses.bsd3;
    maintainers = with maintainers; [ evanjs ];
  };
}