mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-23 21:33:49 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildPythonPackage
|
|
, python
|
|
, pygobject3
|
|
, xvfb-run
|
|
, gobject-introspection
|
|
, gtk3
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "3.2.0";
|
|
pname = "liblarch";
|
|
disabled = pythonOlder "3.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "getting-things-gnome";
|
|
repo = "liblarch";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-A2qChe2z6rAhjRVX5VoHQitebf/nMATdVZQgtlquuYg=";
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
gobject-introspection # for setup hook
|
|
gtk3
|
|
];
|
|
|
|
buildInputs = [ gtk3 ];
|
|
|
|
propagatedBuildInputs = [
|
|
pygobject3
|
|
];
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
${xvfb-run}/bin/xvfb-run -s '-screen 0 800x600x24' \
|
|
${python.interpreter} nix_run_setup test
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A python library built to easily handle data structure such are lists, trees and acyclic graphs";
|
|
homepage = "https://github.com/getting-things-gnome/liblarch";
|
|
downloadPage = "https://github.com/getting-things-gnome/liblarch/releases";
|
|
license = licenses.lgpl3Plus;
|
|
maintainers = with maintainers; [ oyren ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|