mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-17 22:28:55 +00:00
python3Packages.python-swisscom-internet-box: init at 0.2.0 (#540081)
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
{
|
||||
lib,
|
||||
aiohttp,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "python-swisscom-internet-box";
|
||||
version = "0.2.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "anatosun";
|
||||
repo = "python-swisscom-internet-box";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-37F6Ld8oOmqEufYIujkjkxHqfzzgWHrxIqIga53r6xU=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [ aiohttp ];
|
||||
|
||||
pythonImportsCheck = [ "swisscom_internet_box" ];
|
||||
|
||||
meta = {
|
||||
description = "Python client for the Swisscom Internet-Box";
|
||||
homepage = "https://github.com/anatosun/python-swisscom-internet-box";
|
||||
changelog = "https://github.com/anatosun/python-swisscom-internet-box/releases/tag/${finalAttrs.src.tag}";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.jamiemagee ];
|
||||
};
|
||||
})
|
||||
@@ -6446,7 +6446,8 @@
|
||||
];
|
||||
"swisscom" =
|
||||
ps: with ps; [
|
||||
]; # missing inputs: python-swisscom-internet-box
|
||||
python-swisscom-internet-box
|
||||
];
|
||||
"switch" =
|
||||
ps: with ps; [
|
||||
];
|
||||
@@ -8729,6 +8730,7 @@
|
||||
"sunweg"
|
||||
"surepetcare"
|
||||
"swiss_public_transport"
|
||||
"swisscom"
|
||||
"switch"
|
||||
"switch_as_x"
|
||||
"switchbee"
|
||||
|
||||
@@ -16800,6 +16800,10 @@ self: super: with self; {
|
||||
|
||||
python-swiftclient = callPackage ../development/python-modules/python-swiftclient { };
|
||||
|
||||
python-swisscom-internet-box =
|
||||
callPackage ../development/python-modules/python-swisscom-internet-box
|
||||
{ };
|
||||
|
||||
python-tado = callPackage ../development/python-modules/python-tado { };
|
||||
|
||||
python-tds = callPackage ../development/python-modules/python-tds { };
|
||||
|
||||
Reference in New Issue
Block a user