Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "dbus-client-gen"; 8 version = "0.5.1"; 9 10 src = fetchPypi { 11 inherit pname version; 12 hash = "sha256-vRXo72aWoreH/VwzdEAOgoGSRzRf7vy8Z/IA+lnLoWw="; 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}