depot/third_party/nixpkgs/pkgs/development/python-modules/scrapy-splash/default.nix
Default email d7dbe45cea Project import generated by Copybara.
GitOrigin-RevId: 9480bae337095fd24f61380bce3174fdfe926a00
2020-06-18 09:06:33 +02:00

20 lines
555 B
Nix

{ stdenv, fetchPypi, buildPythonPackage, pytest, hypothesis, scrapy }:
buildPythonPackage rec {
pname = "scrapy-splash";
version = "0.7.2";
src = fetchPypi {
inherit pname version;
sha256 = "1dg7csdza2hzqskd9b9gx0v3saqsch4f0fwdp0a3p0822aqqi488";
};
checkInputs = [ pytest hypothesis scrapy ];
meta = with stdenv.lib; {
description = "Scrapy+Splash for JavaScript integration";
homepage = "https://github.com/scrapy-plugins/scrapy-splash";
license = licenses.bsd3;
maintainers = with maintainers; [ evanjs ];
};
}