4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
42 lines
995 B
Nix
42 lines
995 B
Nix
{ lib, stdenv
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, python
|
|
, dbus, dbus-python, pytest, pytestcov, pytest-asyncio, pytest-timeout
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dbus-next";
|
|
version = "0.2.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "altdesktop";
|
|
repo = "python-dbus-next";
|
|
rev = "v${version}";
|
|
sha256 = "0x78ghkci4las13gwbrm8fzg671lx1q2cn8h0f64ki8yag1myia1";
|
|
};
|
|
|
|
checkInputs = [
|
|
dbus
|
|
dbus-python
|
|
pytest
|
|
pytestcov
|
|
pytest-asyncio
|
|
pytest-timeout
|
|
];
|
|
|
|
# test_peer_interface hits a timeout
|
|
checkPhase = ''
|
|
dbus-run-session --config-file=${dbus.daemon}/share/dbus-1/session.conf \
|
|
${python.interpreter} -m pytest -sv --cov=dbus_next \
|
|
-k "not test_peer_interface"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/altdesktop/python-dbus-next";
|
|
description = "A zero-dependency DBus library for Python with asyncio support";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ sfrijters ];
|
|
};
|
|
}
|