Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 20 lines 555 B view raw
1{ stdenv, fetchPypi, buildPythonPackage, pytest, hypothesis, scrapy }: 2 3buildPythonPackage rec { 4 pname = "scrapy-splash"; 5 version = "0.7.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1dg7csdza2hzqskd9b9gx0v3saqsch4f0fwdp0a3p0822aqqi488"; 10 }; 11 12 checkInputs = [ pytest hypothesis scrapy ]; 13 14 meta = with stdenv.lib; { 15 description = "Scrapy+Splash for JavaScript integration"; 16 homepage = "https://github.com/scrapy-plugins/scrapy-splash"; 17 license = licenses.bsd3; 18 maintainers = with maintainers; [ evanjs ]; 19 }; 20}