Merge pull request #264478 from mweinelt/pydbus-pep517-build

python311Packages.pydbus: fix typo and use pep517 builder
This commit is contained in:
Martin Weinelt 2023-10-31 01:21:22 +01:00 committed by GitHub
commit 8bf37c6099
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,13 +1,14 @@
{ 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
];