Files
nixpkgs/pkgs/development/python-modules/jeepney/default.nix
T
Martin Weinelt 8ea6bde88d treewide: prune pythonOlder 3.10/3.11
This is a post 3.10 removal cleanup.
2026-02-15 04:33:54 +01:00

64 lines
1.2 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
fetchFromGitLab,
flit-core,
dbus,
pytest,
pytest-trio,
pytest-asyncio,
testpath,
trio,
}:
buildPythonPackage rec {
pname = "jeepney";
version = "0.9";
pyproject = true;
src = fetchFromGitLab {
owner = "takluyver";
repo = "jeepney";
tag = version;
hash = "sha256-d8w/4PtDviTYDHO4EwaVbxlYk7CXtlv7vuR+o4LhfRs=";
};
build-system = [ flit-core ];
nativeCheckInputs = [
dbus
pytest
pytest-trio
pytest-asyncio
testpath
trio
];
checkPhase = ''
runHook preCheck
dbus-run-session --config-file=${dbus}/share/dbus-1/session.conf -- pytest ${lib.optionalString stdenv.hostPlatform.isDarwin "--ignore=jeepney/io/tests"}
runHook postCheck
'';
pythonImportsCheck = [
"jeepney"
"jeepney.auth"
"jeepney.io"
"jeepney.io.asyncio"
"jeepney.io.blocking"
"jeepney.io.threading"
"jeepney.io.trio"
];
meta = {
changelog = "https://gitlab.com/takluyver/jeepney/-/blob/${src.tag}/docs/release-notes.rst";
homepage = "https://gitlab.com/takluyver/jeepney";
description = "Pure Python DBus interface";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}