Files
nixpkgs/pkgs/development/python-modules/eternalegypt/default.nix
T
Martin Weinelt cc5925a886 python3Packages.eternalegypt: 0.0.16 -> 0.0.17
https://github.com/amelchio/eternalegypt/releases/tag/v0.0.17

This commit was automatically generated using update-python-libraries.
2025-08-09 18:59:18 +02:00

42 lines
849 B
Nix

{
lib,
aiohttp,
attrs,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
}:
buildPythonPackage rec {
pname = "eternalegypt";
version = "0.0.17";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "amelchio";
repo = "eternalegypt";
tag = "v${version}";
hash = "sha256-Qb8s8jU5yn7BIXVIV5cjwE0OnZOWEK8dzTmQDJM22rE=";
};
propagatedBuildInputs = [
aiohttp
attrs
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "eternalegypt" ];
meta = with lib; {
description = "Python API for Netgear LTE modems";
homepage = "https://github.com/amelchio/eternalegypt";
changelog = "https://github.com/amelchio/eternalegypt/releases/tag/${src.tag}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}