504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
22 lines
510 B
Nix
22 lines
510 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dbus-client-gen";
|
|
version = "0.5.1";
|
|
format = "setuptools";
|
|
|
|
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 ];
|
|
};
|
|
}
|