mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
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 {
|
||||
pname = "scrapy-splash";
|
||||
@ -9,7 +9,11 @@ buildPythonPackage rec {
|
||||
sha256 = "1dg7csdza2hzqskd9b9gx0v3saqsch4f0fwdp0a3p0822aqqi488";
|
||||
};
|
||||
|
||||
checkInputs = [ pytest hypothesis scrapy ];
|
||||
propagatedBuildInputs = [ scrapy six ];
|
||||
|
||||
# no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "scrapy_splash" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Scrapy+Splash for JavaScript integration";
|
||||
|
Loading…
Reference in New Issue
Block a user