1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
{
buildPythonPackage,
lib,
git,
fetchFromGitHub,
darwin,
setuptools,
stdenv,
git-annex,
pyside6,
pyqtdarktheme,
datalad-next,
outdated,
datalad,
pytestCheckHook,
pytest-qt,
}:
buildPythonPackage {
pname = "datalad-gooey";
# many bug fixes on `master` but no new release
version = "unstable-2024-02-20";
pyproject = true;
src = fetchFromGitHub {
owner = "datalad";
repo = "datalad-gooey";
rev = "5bd6b9257ff1569439d2a77663271f5d665e61b6";
hash = "sha256-8779SLcV4wwJ3124lteGzvimDxgijyxa818ZrumPMs4=";
};
build-system = [ setuptools ];
dependencies = [
pyside6
pyqtdarktheme
datalad-next
outdated
datalad
] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.AppleScriptKit ];
pythonRemoveDeps = [ "applescript" ];
preCheck = ''
export HOME=$TMPDIR
'';
nativeCheckInputs = [
pytestCheckHook
pytest-qt
git
git-annex
];
pythonImportsCheck = [ "datalad_gooey" ];
meta = {
description = "Graphical user interface (GUI) for DataLad";
homepage = "https://github.com/datalad/datalad-gooey";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ gador ];
mainProgram = "datalad-gooey";
};
}
|