depot/third_party/nixpkgs/pkgs/development/python-modules/dbus-client-gen/default.nix
Default email 94427deb9d Project import generated by Copybara.
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
2023-05-24 16:37:59 +03:00

21 lines
485 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "dbus-client-gen";
version = "0.5.1";
src = fetchPypi {
inherit pname version;
hash = "sha256-vRXo72aWoreH/VwzdEAOgoGSRzRf7vy8Z/IA+lnLoWw=";
};
meta = with lib; {
description = "A Python Library for Generating D-Bus Client Code";
homepage = "https://github.com/stratis-storage/dbus-client-gen";
license = licenses.mpl20;
maintainers = with maintainers; [ nickcao ];
};
}