3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #146615 from fabaff/pyebus

python3Packages.pyebus: init at 1.2.4
This commit is contained in:
Fabian Affolter 2021-11-20 09:35:32 +01:00 committed by GitHub
commit 457d2067bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,43 @@
{ lib
, anytree
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, poetry-core
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyebus";
version = "1.2.4";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "i+p40s9SXey1lfXWW+PiXsA1kUF4o6Rk7QLmQ2ljN6g=";
};
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 ];
};
}

View file

@ -6378,6 +6378,8 @@ in {
pydyf = callPackage ../development/python-modules/pydyf { };
pyebus = callPackage ../development/python-modules/pyebus { };
pyechonest = callPackage ../development/python-modules/pyechonest { };
pyeclib = callPackage ../development/python-modules/pyeclib { };