blob: 5991d695e8e6a9b0f174e74718c78d05b8a6d88c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "dbus-client-gen";
version = "0.5.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-vRXo72aWoreH/VwzdEAOgoGSRzRf7vy8Z/IA+lnLoWw=";
};
meta = {
description = "Python Library for Generating D-Bus Client Code";
homepage = "https://github.com/stratis-storage/dbus-client-gen";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ nickcao ];
};
}
|