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
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ lib, stdenv, buildPythonPackage, fetchFromGitHub
|
|
, xorgserver, pytest, pytest-xvfb, i3, python, xlib, xdpyinfo
|
|
, makeFontsConf, coreutils
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "i3ipc";
|
|
version = "2.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "acrisci";
|
|
repo = "i3ipc-python";
|
|
rev = "v${version}";
|
|
sha256 = "13bzs9dcv27czpnnbgz7a037lm8h991c8gk0qzzk5mq5yak24715";
|
|
};
|
|
propagatedBuildInputs = [ xlib ];
|
|
|
|
fontsConf = makeFontsConf {
|
|
fontDirectories = [ ];
|
|
};
|
|
FONTCONFIG_FILE = fontsConf; # Fontconfig error: Cannot load default config file
|
|
checkInputs = [ pytest xdpyinfo pytest-xvfb xorgserver i3 ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace test/i3.config \
|
|
--replace /bin/true ${coreutils}/bin/true
|
|
'';
|
|
|
|
checkPhase = ''
|
|
py.test --ignore=test/aio/test_shutdown_event.py \
|
|
--ignore=test/test_shutdown_event.py
|
|
'';
|
|
|
|
|
|
meta = with lib; {
|
|
description = "An improved Python library to control i3wm and sway";
|
|
homepage = "https://github.com/acrisci/i3ipc-python";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ vanzef ];
|
|
};
|
|
}
|