python3Packages.spiderpy: init at 1.5.0

This commit is contained in:
Robert Schütz 2021-06-13 23:44:50 +02:00
parent 6aa2bb6a81
commit 348ed81456
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, isPy27
, fetchFromGitHub
, requests
}:
buildPythonPackage rec {
pname = "spiderpy";
version = "1.5.0";
disabled = isPy27;
src = fetchFromGitHub {
owner = "peternijssen";
repo = "spiderpy";
rev = version;
sha256 = "1nbfjqwiyyl7lhkb4rvickxiy9nwynr2sxr1hpyv0vm09h6q8hsc";
};
propagatedBuildInputs = [
requests
];
# no unit tests implemented
doCheck = false;
pythonImportsCheck = [ "spiderpy.spiderapi" ];
meta = with lib; {
description = "Unofficial Python wrapper for the Spider API";
homepage = "https://www.github.com/peternijssen/spiderpy";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}

View file

@ -7910,6 +7910,8 @@ in {
sphfile = callPackage ../development/python-modules/sphfile { };
spiderpy = callPackage ../development/python-modules/spiderpy { };
spinners = callPackage ../development/python-modules/spinners { };
sphinxcontrib-actdiag = callPackage ../development/python-modules/sphinxcontrib-actdiag { };