lol

Merge pull request #126792 from dotlambda/spiderpy-init

python3Packages.spiderpy: init at 1.5.0

authored by

Fabian Affolter and committed by
GitHub
557060a7 b77e9a22

+40 -1
+36
pkgs/development/python-modules/spiderpy/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , isPy27 4 + , fetchFromGitHub 5 + , requests 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "spiderpy"; 10 + version = "1.5.0"; 11 + 12 + disabled = isPy27; 13 + 14 + src = fetchFromGitHub { 15 + owner = "peternijssen"; 16 + repo = "spiderpy"; 17 + rev = version; 18 + sha256 = "1nbfjqwiyyl7lhkb4rvickxiy9nwynr2sxr1hpyv0vm09h6q8hsc"; 19 + }; 20 + 21 + propagatedBuildInputs = [ 22 + requests 23 + ]; 24 + 25 + # no unit tests implemented 26 + doCheck = false; 27 + 28 + pythonImportsCheck = [ "spiderpy.spiderapi" ]; 29 + 30 + meta = with lib; { 31 + description = "Unofficial Python wrapper for the Spider API"; 32 + homepage = "https://www.github.com/peternijssen/spiderpy"; 33 + license = licenses.mit; 34 + maintainers = with maintainers; [ dotlambda ]; 35 + }; 36 + }
+1 -1
pkgs/servers/home-assistant/component-packages.nix
··· 794 794 "spaceapi" = ps: with ps; [ aiohttp-cors ]; 795 795 "spc" = ps: with ps; [ ]; # missing inputs: pyspcwebgw 796 796 "speedtestdotnet" = ps: with ps; [ speedtest-cli ]; 797 - "spider" = ps: with ps; [ ]; # missing inputs: spiderpy 797 + "spider" = ps: with ps; [ spiderpy ]; 798 798 "splunk" = ps: with ps; [ ]; # missing inputs: hass_splunk 799 799 "spotify" = ps: with ps; [ aiohttp-cors spotipy ]; 800 800 "sql" = ps: with ps; [ sqlalchemy ];
+1
pkgs/servers/home-assistant/default.nix
··· 593 593 "soundtouch" 594 594 "spaceapi" 595 595 "speedtestdotnet" 596 + "spider" 596 597 "spotify" 597 598 "sql" 598 599 "squeezebox"
+2
pkgs/top-level/python-packages.nix
··· 7920 7920 7921 7921 sphfile = callPackage ../development/python-modules/sphfile { }; 7922 7922 7923 + spiderpy = callPackage ../development/python-modules/spiderpy { }; 7924 + 7923 7925 spinners = callPackage ../development/python-modules/spinners { }; 7924 7926 7925 7927 sphinxcontrib-actdiag = callPackage ../development/python-modules/sphinxcontrib-actdiag { };