Commit 3720ce9c authored by Gaetan Lepage's avatar Gaetan Lepage Committed by Dmitry Kalinkin
Browse files

python311Packages.xrootd: init at 5.6.6

parent 7b9e1199
Loading
Loading
Loading
Loading
+41 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, cmake
, setuptools
, wheel
, pkgs
}:

buildPythonPackage rec {
  pname = "xrootd";
  pyproject = true;

  inherit (pkgs.xrootd) version src;

  sourceRoot = "${src.name}/bindings/python";

  nativeBuildInputs = [
    cmake
    setuptools
    wheel
  ];

  buildInputs = [
    pkgs.xrootd
  ];

  dontUseCmakeConfigure = true;

  pythonImportsCheck = [ "XRootD" ];

  # Tests are only compatible with Python 2
  doCheck = false;

  meta = with lib; {
    description = "The XRootD central repository";
    homepage = "https://github.com/xrootd/xrootd";
    changelog = "https://github.com/xrootd/xrootd/releases/tag/v${version}";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ GaetanLepage ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -16412,6 +16412,8 @@ self: super: with self; {
  xpybutil = callPackage ../development/python-modules/xpybutil { };
  xrootd = callPackage ../development/python-modules/xrootd { };
  xsdata = callPackage ../development/python-modules/xsdata { };
  xstatic-asciinema-player = callPackage ../development/python-modules/xstatic-asciinema-player { };