emacsPackages.lsp-bridge: 0-unstable-2025-01-11 -> 0-unstable-2025-01-22 (#376531)
[NixPkgs.git] / pkgs / development / python-modules / pyebus / default.nix
blob5376a546c9b0bf86bd043a25ec731d1281ed3c90
2   lib,
3   anytree,
4   buildPythonPackage,
5   fetchPypi,
6   poetry-core,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "pyebus";
12   version = "1.4.0";
13   format = "pyproject";
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-6ooOSJAIi8vYmCjDHnbMGQJfPqPmzA5thDSg+iM7T+8=";
20   };
22   nativeBuildInputs = [ poetry-core ];
24   propagatedBuildInputs = [ anytree ];
26   # https://github.com/c0fec0de/pyebus/issues/3
27   doCheck = false;
29   pythonImportsCheck = [ "pyebus" ];
31   meta = with lib; {
32     description = "Pythonic Interface to EBUS Daemon (ebusd)";
33     homepage = "https://github.com/c0fec0de/pyebus";
34     license = licenses.mit;
35     maintainers = with maintainers; [ fab ];
36   };