python3Packages.dbus-python-client-gen: init at 0.8

This commit is contained in:
Nick Cao 2022-08-01 23:41:00 +08:00
parent de6160d4ff
commit 91dee8a456
No known key found for this signature in database
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, into-dbus-python
, dbus-python
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "dbus-python-client-gen";
version = "0.8";
src = fetchFromGitHub {
owner = "stratis-storage";
repo = pname;
rev = "v${version}";
hash = "sha256-nSzxT65WHBVct5pGHmIAHJXftd0tKZeK/argN+V9xcs=";
};
propagatedBuildInputs = [
into-dbus-python
dbus-python
];
checkInputs = [
pytestCheckHook
];
meta = with lib; {
description = "A Python library for generating dbus-python client code";
homepage = "https://github.com/stratis-storage/dbus-python-client-gen";
license = licenses.mpl20;
maintainers = with maintainers; [ nickcao ];
};
}

View file

@ -2299,6 +2299,8 @@ in {
inherit (pkgs) dbus;
};
dbus-python-client-gen = callPackage ../development/python-modules/dbus-python-client-gen { };
dbus-signature-pyparsing = callPackage ../development/python-modules/dbus-signature-pyparsing { };
dbutils = callPackage ../development/python-modules/dbutils { };