python3Packages.apeye: init at 1.4.1
This commit is contained in:
@@ -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 = [ ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user