pythonPackages.scrapy-splash: init at 0.7.2

This commit is contained in:
Evan Stoll 2020-06-07 14:23:12 -04:00 committed by Jon
parent 0a3c9949ba
commit 187a7f9073
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ 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 ];
};
}

View file

@ -6906,6 +6906,8 @@ in {
scrapy-deltafetch = callPackage ../development/python-modules/scrapy-deltafetch { };
scrapy-splash = callPackage ../development/python-modules/scrapy-splash { };
pandocfilters = callPackage ../development/python-modules/pandocfilters { };
pandoc-attributes = callPackage ../development/python-modules/pandoc-attributes { };