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