python3Packages.dbus-signature-pyparsing: init at 0.04
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pyparsing
|
||||
, pytestCheckHook
|
||||
, hypothesis
|
||||
, hs-dbus-signature
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "dbus-signature-pyparsing";
|
||||
version = "0.04";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "stratis-storage";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-IXyepfq7pLTRkTolKWsKGrYDoxukVC9JTrxS9xV7s2I=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pyparsing ];
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
hypothesis
|
||||
hs-dbus-signature
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Parser for a D-Bus Signature";
|
||||
homepage = "https://github.com/stratis-storage/dbus-signature-pyparsing";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ nickcao ];
|
||||
};
|
||||
}
|
||||
@@ -2299,6 +2299,8 @@ in {
|
||||
inherit (pkgs) dbus;
|
||||
};
|
||||
|
||||
dbus-signature-pyparsing = callPackage ../development/python-modules/dbus-signature-pyparsing { };
|
||||
|
||||
dbutils = callPackage ../development/python-modules/dbutils { };
|
||||
|
||||
db-dtypes = callPackage ../development/python-modules/db-dtypes { };
|
||||
|
||||
Reference in New Issue
Block a user