2021-05-14 02:50:21 +00:00
|
|
|
{ lib, stdenv, fetchPypi, buildPythonPackage, python, pkg-config, dbus, dbus-glib, isPyPy
|
2020-10-18 19:49:12 +00:00
|
|
|
, ncurses, pygobject3, isPy3k }:
|
2011-07-21 17:31:57 +00:00
|
|
|
|
2019-10-17 08:18:32 +00:00
|
|
|
buildPythonPackage rec {
|
2017-05-27 09:25:35 +00:00
|
|
|
pname = "dbus-python";
|
2021-11-01 10:11:55 +00:00
|
|
|
version = "1.2.18";
|
2009-04-12 19:34:20 +00:00
|
|
|
|
2022-07-16 19:43:57 +00:00
|
|
|
disabled = isPyPy;
|
|
|
|
format = "other";
|
2019-10-17 08:18:32 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
2019-03-03 01:34:08 +00:00
|
|
|
|
2019-10-17 08:18:32 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-11-01 10:11:55 +00:00
|
|
|
sha256 = "0q3jrw515z98mqdk9x822nd95rky455zz9876f1nqna5igkd3gcj";
|
2009-04-12 19:34:20 +00:00
|
|
|
};
|
|
|
|
|
2019-03-03 01:34:08 +00:00
|
|
|
patches = [
|
|
|
|
./fix-includedir.patch
|
|
|
|
];
|
2015-01-08 09:26:49 +00:00
|
|
|
|
2022-07-16 19:43:57 +00:00
|
|
|
preConfigure = lib.optionalString (lib.versionAtLeast stdenv.hostPlatform.darwinMinVersion "11" && stdenv.isDarwin) ''
|
2021-05-14 02:50:21 +00:00
|
|
|
MACOSX_DEPLOYMENT_TARGET=10.16
|
2022-07-16 19:43:57 +00:00
|
|
|
'';
|
2021-05-14 02:50:21 +00:00
|
|
|
|
2021-12-01 20:46:18 +00:00
|
|
|
configureFlags = [
|
2021-12-29 14:36:31 +00:00
|
|
|
"PYTHON=${python.pythonForBuild.interpreter}"
|
2021-12-01 20:46:18 +00:00
|
|
|
];
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2018-02-25 02:23:58 +00:00
|
|
|
buildInputs = [ dbus dbus-glib ]
|
2016-05-25 07:19:09 +00:00
|
|
|
# My guess why it's sometimes trying to -lncurses.
|
|
|
|
# It seems not to retain the dependency anyway.
|
2016-08-31 09:01:16 +00:00
|
|
|
++ lib.optional (! python ? modules) ncurses;
|
2013-03-15 00:08:16 +00:00
|
|
|
|
2020-10-18 19:49:12 +00:00
|
|
|
doCheck = isPy3k;
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [ dbus.out pygobject3 ];
|
2009-04-12 19:34:20 +00:00
|
|
|
|
2022-08-01 15:35:41 +00:00
|
|
|
postInstall = ''
|
|
|
|
cp -r dbus_python.egg-info $out/${python.sitePackages}/
|
|
|
|
'';
|
|
|
|
|
2022-07-16 19:43:57 +00:00
|
|
|
meta = with lib; {
|
2009-04-12 19:34:20 +00:00
|
|
|
description = "Python DBus bindings";
|
2022-07-16 19:43:57 +00:00
|
|
|
license = licenses.mit;
|
2015-04-25 22:08:05 +00:00
|
|
|
platforms = dbus.meta.platforms;
|
2022-07-16 19:43:57 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2009-04-12 19:34:20 +00:00
|
|
|
};
|
|
|
|
}
|