11 buildPythonPackage rec {
12 pname = "dbus-python-client-gen";
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
19 owner = "stratis-storage";
21 rev = "refs/tags/v${version}";
22 hash = "sha256-4Y4cL254ZlZKF6d6cStIOya3J4ZfypuumwKOdDNzuNc=";
25 propagatedBuildInputs = [
30 nativeCheckInputs = [ pytestCheckHook ];
32 pythonImportsCheck = [ "dbus_python_client_gen" ];
35 description = "Python library for generating dbus-python client code";
36 homepage = "https://github.com/stratis-storage/dbus-python-client-gen";
37 changelog = "https://github.com/stratis-storage/dbus-python-client-gen/blob/v${version}/CHANGES.txt";
38 license = licenses.mpl20;
39 maintainers = with maintainers; [ nickcao ];