python310Packages.pyruckus: remove

Depreated in favor of aioruckus, and home-assistant, its only consumer
in nixpkgs, has already moved on.
This commit is contained in:
Martin Weinelt
2023-09-08 10:58:04 +02:00
parent b24287dde8
commit 4deda2a9c8
3 changed files with 1 additions and 38 deletions
@@ -1,36 +0,0 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pexpect
, python-slugify
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyruckus";
version = "0.16";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "gabe565";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-SVE5BrCCQgCrhOC0CSGgbZ9TEY3iZ9Rp/xMUShPAxxM=";
};
propagatedBuildInputs = [
pexpect
python-slugify
];
# Tests requires network features
doCheck = false;
pythonImportsCheck = [ "pyruckus" ];
meta = with lib; {
description = "Python client for Ruckus Unleashed";
homepage = "https://github.com/gabe565/pyruckus";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}
+1
View File
@@ -290,6 +290,7 @@ mapAliases ({
Pyro4 = pyro4; # added 2023-02-19
Pyro5 = pyro5; # added 2023-02-19
PyRSS2Gen = pyrss2gen; # added 2023-02-19
pyruckus = throw "pyruckus has been removed, it was deprecrated in favor of aioruckus."; # added 2023-09-07
pysha3 = throw "pysha3 has been removed, use safe-pysha3 instead"; # added 2023-05-20
pysmart-smartx = pysmart; # added 2021-10-22
pysparse = throw "pysparse has been abandoned upstream."; # added 2023-02-28
-2
View File
@@ -9845,8 +9845,6 @@ self: super: with self; {
pyrtlsdr = callPackage ../development/python-modules/pyrtlsdr { };
pyruckus = callPackage ../development/python-modules/pyruckus { };
pysaj = callPackage ../development/python-modules/pysaj { };
pysam = callPackage ../development/python-modules/pysam { };