Merge pull request #264478 from mweinelt/pydbus-pep517-build
python311Packages.pydbus: fix typo and use pep517 builder
This commit is contained in:
commit
8bf37c6099
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue