blob: 8659f0a38e974d2a18fa7a78f8cc671fd8019edb (
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
38
39
40
41
42
43
|
{ lib
, anytree
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, 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 ];
};
}
|