2020-10-04 05:20:00 +01:00
|
|
|
{ stdenv, fetchFromGitHub, buildPythonPackage, pytestCheckHook, pytestcov, pytest-mock, fake-useragent, faker, scrapy }:
|
2020-06-07 19:21:54 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "scrapy-fake-useragent";
|
2020-08-16 18:31:15 +01:00
|
|
|
version = "1.4.4";
|
2020-06-07 19:21:54 +01:00
|
|
|
|
2020-10-04 05:20:00 +01:00
|
|
|
# PyPi tarball is corrupted
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "alecxe";
|
|
|
|
repo = pname;
|
|
|
|
rev = "59c20d38c58c76618164760d546aa5b989a79b8b"; # no tags
|
|
|
|
sha256 = "0yb7d51jws665rdfqkmi077w0pjxmb2ni7ysphj7lx7b18whq54j";
|
2020-06-07 19:21:54 +01:00
|
|
|
};
|
|
|
|
|
2020-10-04 05:20:00 +01:00
|
|
|
propagatedBuildInputs = [ fake-useragent faker ];
|
2020-06-07 19:21:54 +01:00
|
|
|
|
2020-10-04 05:20:00 +01:00
|
|
|
checkInputs = [ pytestCheckHook scrapy pytestcov pytest-mock ];
|
2020-06-07 19:21:54 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Random User-Agent middleware based on fake-useragent";
|
|
|
|
homepage = "https://github.com/alecxe/scrapy-fake-useragent";
|
2020-10-21 20:54:02 +01:00
|
|
|
license = licenses.mit;
|
2020-06-07 19:21:54 +01:00
|
|
|
};
|
|
|
|
}
|