python3Packages.into-dbus-python: init at 0.08

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

View File

@ -0,0 +1,38 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, dbus-signature-pyparsing
, dbus-python
, pytestCheckHook
, hypothesis
, hs-dbus-signature
}:
buildPythonPackage rec {
pname = "into-dbus-python";
version = "0.08";
src = fetchFromGitHub {
owner = "stratis-storage";
repo = pname;
rev = "v${version}";
hash = "sha256-Z8e6oAvRMIisMjG4HcS5jSH1znGVc7pGpMITo5fXYVs=";
};
propagatedBuildInputs = [
dbus-signature-pyparsing
dbus-python
];
checkInputs = [
pytestCheckHook
hypothesis
hs-dbus-signature
];
meta = with lib; {
description = "A transformer to dbus-python types";
homepage = "https://github.com/stratis-storage/into-dbus-python";
license = licenses.asl20;
maintainers = with maintainers; [ nickcao ];
};
}

View File

@ -4524,6 +4524,8 @@ in {
intervaltree = callPackage ../development/python-modules/intervaltree { };
into-dbus-python = callPackage ../development/python-modules/into-dbus-python { };
intreehooks = callPackage ../development/python-modules/intreehooks { };
invocations = callPackage ../development/python-modules/invocations { };