evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / xrootd / default.nix
blob65d874d73c2d4b0d01b60ca167289f344e4e91d8
2   lib,
3   buildPythonPackage,
4   cmake,
5   setuptools,
6   xrootd,
7 }:
9 buildPythonPackage rec {
10   pname = "xrootd";
11   pyproject = true;
13   inherit (xrootd) version src;
15   sourceRoot = "${src.name}/bindings/python";
17   build-system = [
18     cmake
19     setuptools
20   ];
22   buildInputs = [ xrootd ];
24   dontUseCmakeConfigure = true;
26   pythonImportsCheck = [ "XRootD" ];
28   # Tests are only compatible with Python 2
29   doCheck = false;
31   meta = {
32     description = "XRootD central repository";
33     homepage = "https://github.com/xrootd/xrootd";
34     changelog = "https://github.com/xrootd/xrootd/releases/tag/v${version}";
35     license = lib.licenses.gpl3Only;
36     maintainers = with lib.maintainers; [ GaetanLepage ];
37   };