python3Packages.autoskope-client: init at 1.4.1

Co-authored-by: Michael Daniels <mdaniels5757@gmail.com>
This commit is contained in:
Jamie Magee
2026-05-08 13:46:43 -04:00
committed by Michael Daniels
co-authored by Michael Daniels
parent ac9b287b65
commit e813766088
2 changed files with 47 additions and 0 deletions
@@ -0,0 +1,45 @@
{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
pytest-asyncio,
pytestCheckHook,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "autoskope-client";
version = "1.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "mcisk";
repo = "autoskope_client";
tag = "v${finalAttrs.version}";
hash = "sha256-ThrI5BzjxVg4K1fvRZvPfDycAh4A9rm226FSpk3a/zs=";
};
build-system = [ setuptools ];
dependencies = [ aiohttp ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
disabledTestMarks = [
"integration"
];
pythonImportsCheck = [ "autoskope_client" ];
meta = {
description = "Python client library for the Autoskope API";
homepage = "https://github.com/mcisk/autoskope_client";
changelog = "https://github.com/mcisk/autoskope_client/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ jamiemagee ];
};
})
+2
View File
@@ -1302,6 +1302,8 @@ self: super: with self; {
autopxd2 = callPackage ../development/python-modules/autopxd2 { };
autoskope-client = callPackage ../development/python-modules/autoskope-client { };
autoslot = callPackage ../development/python-modules/autoslot { };
av = callPackage ../development/python-modules/av { };