mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.asmog: drop
Dead leaf package, previous home-assistant dependency.
This commit is contained in:
parent
5534c1822f
commit
25f693af07
3 changed files with 1 additions and 41 deletions
|
|
@ -1,39 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
aiohttp,
|
||||
async-timeout,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "asmog";
|
||||
version = "0.0.6";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit (finalAttrs) pname version;
|
||||
hash = "sha256-k8dC3g2oY/b4w4m7Y/HUy/6/3Tm1kntx9tjoyXqDaJE=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
aiohttp
|
||||
async-timeout
|
||||
];
|
||||
|
||||
# Project doesn't ship the tests
|
||||
# https://github.com/kstaniek/python-ampio-smog-api/issues/2
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "asmog" ];
|
||||
|
||||
meta = {
|
||||
description = "Python module for Ampio Smog Sensors";
|
||||
homepage = "https://github.com/kstaniek/python-ampio-smog-api";
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
})
|
||||
|
|
@ -91,6 +91,7 @@ mapAliases {
|
|||
apkit = throw "apkit was removed because it is unmaintained upstream and different from apkit on PyPI"; # added 2025-09-13
|
||||
APScheduler = throw "'APScheduler' has been renamed to/replaced by 'apscheduler'"; # Converted to throw 2025-10-29
|
||||
argon2_cffi = throw "'argon2_cffi' has been renamed to/replaced by 'argon2-cffi'"; # Converted to throw 2025-10-29
|
||||
asmog = throw "'asmog' has been removed because the service it polled is offline and the library has been unmaintained since 2019"; # Added 2026-06-04
|
||||
aspy-refactor-imports = throw "'aspy-refactor-imports' has been renamed to/replaced by 'classify-imports'"; # Added 2026-05-22
|
||||
aspy-yaml = throw "'aspy-yaml' has been removed because the upstream repository was archived in 2020"; # Added 2026-06-04
|
||||
astropy-extension-helpers = extension-helpers; # Added 2025-10-15
|
||||
|
|
|
|||
|
|
@ -1142,8 +1142,6 @@ self: super: with self; {
|
|||
|
||||
asks = callPackage ../development/python-modules/asks { };
|
||||
|
||||
asmog = callPackage ../development/python-modules/asmog { };
|
||||
|
||||
asn1 = callPackage ../development/python-modules/asn1 { };
|
||||
|
||||
asn1ate = callPackage ../development/python-modules/asn1ate { };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue