lol

python311Packages.pydbus: fix typo and use pep517 builder

Fixes: 0ec908a1b084 ("python311Packages.pydbus: patch python311 co...")

+6 -1
+6 -1
pkgs/development/python-modules/pydbus/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , setuptools 4 5 , pygobject3 5 6 }: 6 7 7 8 buildPythonPackage rec { 8 9 pname = "pydbus"; 9 10 version = "0.6.0"; 10 - pyproejct = true; 11 + pyproject = true; 11 12 12 13 src = fetchFromGitHub { 13 14 owner = "LEW21"; ··· 20 21 substituteInPlace pydbus/_inspect3.py \ 21 22 --replace "getargspec" "getfullargspec" 22 23 ''; 24 + 25 + nativeBuildInputs = [ 26 + setuptools 27 + ]; 23 28 24 29 propagatedBuildInputs = [ 25 30 pygobject3