Merge pull request #220756 from NickCao/dbus-python-client-gen

python3Packages.dbus-python-client-gen: 0.8 -> 0.8.2
This commit is contained in:
Fabian Affolter
2023-03-13 11:33:48 +01:00
committed by GitHub
@@ -4,17 +4,21 @@
, into-dbus-python
, dbus-python
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "dbus-python-client-gen";
version = "0.8";
version = "0.8.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "stratis-storage";
repo = pname;
rev = "v${version}";
hash = "sha256-nSzxT65WHBVct5pGHmIAHJXftd0tKZeK/argN+V9xcs=";
rev = "refs/tags/v${version}";
hash = "sha256-RYgS4RNLLCtp+5gS/LlzdH7rlub48TSSSKhykkkBcuo=";
};
propagatedBuildInputs = [
@@ -31,6 +35,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "A Python library for generating dbus-python client code";
homepage = "https://github.com/stratis-storage/dbus-python-client-gen";
changelog = "https://github.com/stratis-storage/dbus-python-client-gen/blob/v${version}/CHANGES.txt";
license = licenses.mpl20;
maintainers = with maintainers; [ nickcao ];
};