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