about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/scrapy-splash/default.nix
blob: 9be77facf08e7f71782c3bb0cb8f02b1d3a14846 (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
{ lib, fetchPypi, buildPythonPackage, scrapy, six }:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "a7c17735415151ae01f07b03c7624e7276a343779b3c5f4546f655f6133df42f";
  };

  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 ];
  };
}