tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.dbus-python-client-gen: init at 0.8
Nick Cao
3 years ago
91dee8a4
de6160d4
+36
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
dbus-python-client-gen
default.nix
top-level
python-packages.nix
+34
pkgs/development/python-modules/dbus-python-client-gen/default.nix
···
1
1
+
{ lib
2
2
+
, buildPythonPackage
3
3
+
, fetchFromGitHub
4
4
+
, into-dbus-python
5
5
+
, dbus-python
6
6
+
, pytestCheckHook
7
7
+
}:
8
8
+
9
9
+
buildPythonPackage rec {
10
10
+
pname = "dbus-python-client-gen";
11
11
+
version = "0.8";
12
12
+
13
13
+
src = fetchFromGitHub {
14
14
+
owner = "stratis-storage";
15
15
+
repo = pname;
16
16
+
rev = "v${version}";
17
17
+
hash = "sha256-nSzxT65WHBVct5pGHmIAHJXftd0tKZeK/argN+V9xcs=";
18
18
+
};
19
19
+
20
20
+
propagatedBuildInputs = [
21
21
+
into-dbus-python
22
22
+
dbus-python
23
23
+
];
24
24
+
checkInputs = [
25
25
+
pytestCheckHook
26
26
+
];
27
27
+
28
28
+
meta = with lib; {
29
29
+
description = "A Python library for generating dbus-python client code";
30
30
+
homepage = "https://github.com/stratis-storage/dbus-python-client-gen";
31
31
+
license = licenses.mpl20;
32
32
+
maintainers = with maintainers; [ nickcao ];
33
33
+
};
34
34
+
}
+2
pkgs/top-level/python-packages.nix
···
2299
2299
inherit (pkgs) dbus;
2300
2300
};
2301
2301
2302
2302
+
dbus-python-client-gen = callPackage ../development/python-modules/dbus-python-client-gen { };
2303
2303
+
2302
2304
dbus-signature-pyparsing = callPackage ../development/python-modules/dbus-signature-pyparsing { };
2303
2305
2304
2306
dbutils = callPackage ../development/python-modules/dbutils { };