python3Packages.into-dbus-python: init at 0.08
This commit is contained in:
parent
dc168de323
commit
de6160d4ff
38
pkgs/development/python-modules/into-dbus-python/default.nix
Normal file
38
pkgs/development/python-modules/into-dbus-python/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user