Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / scrapy-splash / default.nix
blob5f6721f8162c03b35047c5450ac0ba46add57dd1
1 { lib, fetchPypi, buildPythonPackage, scrapy, six }:
3 buildPythonPackage rec {
4   pname = "scrapy-splash";
5   version = "0.7.2";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "1dg7csdza2hzqskd9b9gx0v3saqsch4f0fwdp0a3p0822aqqi488";
10   };
12   propagatedBuildInputs = [ scrapy six ];
14   # no tests
15   doCheck = false;
16   pythonImportsCheck = [ "scrapy_splash" ];
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   };