Files
2026-06-06 09:12:57 +07:00

37 lines
752 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pycryptodome,
}:
buildPythonPackage (finalAttrs: {
pname = "brelpy";
version = "0.0.3";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-MYWSKYd7emHZfY+W/UweQtTg62GSUMybpecL9BR8dhg=";
};
build-system = [ setuptools ];
dependencies = [ pycryptodome ];
# Source not tagged and PyPI releases don't contain tests
doCheck = false;
pythonImportsCheck = [ "brelpy" ];
meta = {
description = "Python to communicate with the Brel hubs";
homepage = "https://gitlab.com/rogiervandergeer/brelpy";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ fab ];
};
})