1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "dbus-client-gen"; 8 version = "0.5"; 9 10 src = fetchPypi { 11 inherit pname version; 12 hash = "sha256-DrpIeB6kMXPP6PfCjyx7Lsi8yyvwSl9k1nnUGtvVGKg="; 13 }; 14 15 meta = with lib; { 16 description = "A Python Library for Generating D-Bus Client Code"; 17 homepage = "https://github.com/stratis-storage/dbus-client-gen"; 18 license = licenses.mpl20; 19 maintainers = with maintainers; [ nickcao ]; 20 }; 21}