Unverified Commit 96fb326f authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

python3Packages.dbus-python-client-gen: 0.8 -> 0.8.2
parents 03d53aca 3f90d054
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -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 ];
  };