blob: 8c82abd5304fdbf4004f3a20612e888767dbfa9e (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
pycryptodome,
}:
buildPythonPackage rec {
pname = "brelpy";
version = "0.0.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-MYWSKYd7emHZfY+W/UweQtTg62GSUMybpecL9BR8dhg=";
};
propagatedBuildInputs = [ 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 ];
};
}
|