blob: cb7d8799536053ad8172e9913d6e4b28782f0b7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
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 ];
};
})
|