22376ca4c1
Diff: https://github.com/richardpolzer/ekey-bionyx-api/compare/1.0.0...1.0.1 Changelog: https://github.com/richardpolzer/ekey-bionyx-api/releases/tag/1.0.1
44 lines
949 B
Nix
44 lines
949 B
Nix
{
|
|
lib,
|
|
aiohttp,
|
|
aioresponses,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ekey-bionyxpy";
|
|
version = "1.0.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "richardpolzer";
|
|
repo = "ekey-bionyx-api";
|
|
tag = version;
|
|
hash = "sha256-V4xYv+mjU4QO/+hOq3TH8b/X9PVP95i6apYkcqVDIWY=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ aiohttp ];
|
|
|
|
nativeCheckInputs = [
|
|
aioresponses
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "ekey_bionyxpy" ];
|
|
|
|
meta = {
|
|
description = "Interact with the bionyx third party API of the ekey biometric systems";
|
|
homepage = "https://github.com/richardpolzer/ekey-bionyx-api";
|
|
changelog = "https://github.com/richardpolzer/ekey-bionyx-api/releases/tag/${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.jamiemagee ];
|
|
};
|
|
}
|