mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.unifiled: drop
This commit is contained in:
parent
5d783f96ac
commit
8734999bb6
3 changed files with 1 additions and 38 deletions
|
|
@ -1,36 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
requests,
|
||||
urllib3,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "unifiled";
|
||||
version = "1.1";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "florisvdk";
|
||||
repo = "unifiled";
|
||||
rev = "v${version}";
|
||||
sha256 = "1nmqxxhwa0isxdb889nhbp7w4axj1mcrwd3pr9d8nhpw4yj9h3vq";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
urllib3
|
||||
];
|
||||
|
||||
# Project doesn't have any tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "unifiled" ];
|
||||
|
||||
meta = {
|
||||
description = "Python module for Ubiquiti Unifi LED controller";
|
||||
homepage = "https://github.com/florisvdk/unifiled";
|
||||
license = with lib.licenses; [ mit ];
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
|
|
@ -666,6 +666,7 @@ mapAliases {
|
|||
ufoLib2 = throw "'ufoLib2' has been renamed to/replaced by 'ufolib2'"; # Converted to throw 2025-10-29
|
||||
unicode-slugify = throw "'unicode-slugify' has been removed becaues it was broken and unmaintained. Consider using 'python-slugify' instead."; # added 2025-10-05
|
||||
unifi = throw "'unifi' has been removed as upstream was archived in 2017"; # Added 2025-08-25
|
||||
unifiled = throw "'unifiled' has been removed because Home Assistant dropped the integration"; # Added 2026-06-04
|
||||
unittest-data-provider = throw "'unittest-data-provider' has been removed as it was unused, unmaintained, and upstream suggests 'pytest parameterize' instead."; # Added 2026-05-22
|
||||
update_checker = throw "'update_checker' has been renamed to/replaced by 'update-checker'"; # Converted to throw 2025-10-29
|
||||
uranium = throw "'uranium' has been removed, as it was unmaintained in nixpkgs"; # Added 2026-05-22
|
||||
|
|
|
|||
|
|
@ -21195,8 +21195,6 @@ self: super: with self; {
|
|||
|
||||
unifi-discovery = callPackage ../development/python-modules/unifi-discovery { };
|
||||
|
||||
unifiled = callPackage ../development/python-modules/unifiled { };
|
||||
|
||||
unify = callPackage ../development/python-modules/unify { };
|
||||
|
||||
unique-log-filter = callPackage ../development/python-modules/unique-log-filter { };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue