pythonPackages.scrapy-splash: Fix dependencies, disable tests
This commit is contained in:
parent
f8c2f7583a
commit
1d12368d30
@ -1,4 +1,4 @@
|
|||||||
{ lib, stdenv, fetchPypi, buildPythonPackage, pytest, hypothesis, scrapy }:
|
{ stdenv, lib, fetchPypi, buildPythonPackage, scrapy, six }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "scrapy-splash";
|
pname = "scrapy-splash";
|
||||||
@ -9,7 +9,11 @@ buildPythonPackage rec {
|
|||||||
sha256 = "1dg7csdza2hzqskd9b9gx0v3saqsch4f0fwdp0a3p0822aqqi488";
|
sha256 = "1dg7csdza2hzqskd9b9gx0v3saqsch4f0fwdp0a3p0822aqqi488";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ pytest hypothesis scrapy ];
|
propagatedBuildInputs = [ scrapy six ];
|
||||||
|
|
||||||
|
# no tests
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "scrapy_splash" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Scrapy+Splash for JavaScript integration";
|
description = "Scrapy+Splash for JavaScript integration";
|
||||||
|
Loading…
Reference in New Issue
Block a user