blob: 5376a546c9b0bf86bd043a25ec731d1281ed3c90 (
plain) (
blame)
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
37
|
{
lib,
anytree,
buildPythonPackage,
fetchPypi,
poetry-core,
pythonOlder,
}:
buildPythonPackage rec {
pname = "pyebus";
version = "1.4.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-6ooOSJAIi8vYmCjDHnbMGQJfPqPmzA5thDSg+iM7T+8=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [ anytree ];
# https://github.com/c0fec0de/pyebus/issues/3
doCheck = false;
pythonImportsCheck = [ "pyebus" ];
meta = with lib; {
description = "Pythonic Interface to EBUS Daemon (ebusd)";
homepage = "https://github.com/c0fec0de/pyebus";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}
|