cc5925a886
https://github.com/amelchio/eternalegypt/releases/tag/v0.0.17 This commit was automatically generated using update-python-libraries.
42 lines
849 B
Nix
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 ];
|
|
};
|
|
}
|