python3Packages.apeye: init at 1.4.1

This commit is contained in:
provokateurin
2025-11-21 18:57:58 +01:00
parent 1c85f79bc2
commit 0899bab496
2 changed files with 41 additions and 0 deletions
@@ -0,0 +1,39 @@
{
buildPythonPackage,
fetchPypi,
flit-core,
apeye-core,
domdf-python-tools,
platformdirs,
requests,
lib,
}:
buildPythonPackage rec {
pname = "apeye";
version = "1.4.1";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "apeye";
hash = "sha256-FOpUL61onjv9vaIYmjVKSQjpCu5L+EwVq3XWhFPXajY=";
};
build-system = [ flit-core ];
dependencies = [
apeye-core
domdf-python-tools
platformdirs
requests
];
pythonImportsCheck = [ "apeye" ];
meta = {
description = "Handy tools for working with URLs and APIs";
homepage = "https://github.com/domdfcoding/apeye";
license = lib.licenses.gpl3Plus;
maintainers = [ ];
};
}
+2
View File
@@ -778,6 +778,8 @@ self: super: with self; {
apcaccess = callPackage ../development/python-modules/apcaccess { };
apeye = callPackage ../development/python-modules/apeye { };
apeye-core = callPackage ../development/python-modules/apeye-core { };
apipkg = callPackage ../development/python-modules/apipkg { };