blob: 65d874d73c2d4b0d01b60ca167289f344e4e91d8 (
plain)
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
|
{
lib,
buildPythonPackage,
cmake,
setuptools,
xrootd,
}:
buildPythonPackage rec {
pname = "xrootd";
pyproject = true;
inherit (xrootd) version src;
sourceRoot = "${src.name}/bindings/python";
build-system = [
cmake
setuptools
];
buildInputs = [ xrootd ];
dontUseCmakeConfigure = true;
pythonImportsCheck = [ "XRootD" ];
# Tests are only compatible with Python 2
doCheck = false;
meta = {
description = "XRootD central repository";
homepage = "https://github.com/xrootd/xrootd";
changelog = "https://github.com/xrootd/xrootd/releases/tag/v${version}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}
|