1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 sdbus,
6}:
7
8let
9 pname = "sdbus-networkmanager";
10 version = "2.0.0";
11in
12buildPythonPackage {
13 inherit pname version;
14
15 propagatedBuildInputs = [ sdbus ];
16
17 src = fetchPypi {
18 inherit pname version;
19 hash = "sha256-NXKsOoGJxoPsBBassUh2F3Oo8Iga09eLbW9oZO/5xQs=";
20 };
21
22 meta = with lib; {
23 description = "python-sdbus binds for NetworkManager";
24 homepage = "https://github.com/python-sdbus/python-sdbus-networkmanager";
25 license = licenses.lgpl2;
26 maintainers = with maintainers; [ camelpunch ];
27 platforms = platforms.linux;
28 };
29}