mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 04:13:12 +00:00
python3Packages.spiderpy: init at 1.5.0
This commit is contained in:
parent
6aa2bb6a81
commit
348ed81456
36
pkgs/development/python-modules/spiderpy/default.nix
Normal file
36
pkgs/development/python-modules/spiderpy/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user