Unverified Commit dd69fced authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python311Packages.pydbus: fix typo and use pep517 builder

Fixes: 0ec908a1 ("python311Packages.pydbus: patch python311 co...")
parent b4c72e07
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pygobject3
}:

buildPythonPackage rec {
  pname = "pydbus";
  version = "0.6.0";
  pyproejct = true;
  pyproject = true;

  src = fetchFromGitHub {
    owner = "LEW21";
@@ -21,6 +22,10 @@ buildPythonPackage rec {
      --replace "getargspec" "getfullargspec"
  '';

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    pygobject3
  ];