nixpkgs/pkgs/development/python-modules/pyebus/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
763 B
Nix
Raw Normal View History

2021-11-19 11:56:11 +00:00
{ lib
, anytree
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, poetry-core
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyebus";
2022-01-05 14:33:07 +00:00
version = "1.4.0";
2021-11-19 11:56:11 +00:00
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-6ooOSJAIi8vYmCjDHnbMGQJfPqPmzA5thDSg+iM7T+8=";
2021-11-19 11:56:11 +00:00
};
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 ];
};
}