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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatch-docstring-description,
hatch-vcs,
hatchling,
coverage,
ipykernel,
jupyter-client,
pytestCheckHook,
pytest-asyncio,
pytest-subprocess,
testing-common-database,
writableTmpDirAsHomeHook,
}:
buildPythonPackage rec {
pname = "session-info2";
version = "0.3";
pyproject = true;
src = fetchFromGitHub {
owner = "scverse";
repo = "session-info2";
tag = "v${version}";
hash = "sha256-Li7Ik7AnWiG742x01m49iEYuOBg0FFx8amv/7KTe9gE=";
};
build-system = [
hatch-docstring-description
hatch-vcs
hatchling
];
nativeCheckInputs = [
coverage
ipykernel
jupyter-client
pytestCheckHook
pytest-asyncio
pytest-subprocess
testing-common-database
writableTmpDirAsHomeHook
];
pythonImportsCheck = [
"session_info2"
];
meta = {
description = "Report Python session information";
homepage = "https://session-info2.readthedocs.io";
changelog = "https://github.com/scverse/session-info2/releases/tag/${src.tag}";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}
|