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