Files
nixpkgs/pkgs/development/python-modules/eternalegypt/default.nix
Martin Weinelt 60f9661b81 Revert "python3Packages.eternalegypt: 0.0.16 -> 0.0.17"
This reverts commit cc5925a886.

Breaks the home-assistant netgear_lte integration test.
2025-09-05 03:37:08 +02:00

42 lines
850 B
Nix

{
lib,
aiohttp,
attrs,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
}:
buildPythonPackage rec {
pname = "eternalegypt";
version = "0.0.16";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "amelchio";
repo = "eternalegypt";
tag = "v${version}";
hash = "sha256-ubKepd3yBaoYrIUe5WCt1zd4CjvU7SeftOR+2cBaEf0=";
};
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/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}