python312Packages.fsspec-xrootd: 0.3.0 -> 0.4.0 (#341811)

Changed files
+14 -11
pkgs
development
python-modules
fsspec-xrootd
+14 -11
pkgs/development/python-modules/fsspec-xrootd/default.nix
···
{
lib,
+
stdenv,
buildPythonPackage,
-
pythonOlder,
fetchFromGitHub,
+
+
# build-system
setuptools,
setuptools-scm,
+
+
# dependencies
fsspec,
xrootd,
+
+
# tests
pkgs,
pytestCheckHook,
-
stdenv,
}:
buildPythonPackage rec {
pname = "fsspec-xrootd";
-
version = "0.3.0";
+
version = "0.4.0";
pyproject = true;
-
-
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "CoffeaTeam";
repo = "fsspec-xrootd";
rev = "refs/tags/v${version}";
-
hash = "sha256-fhamfMWlsiiqfU9c9XDfLEEkRbMAqm74rc2bGF3fRaM=";
+
hash = "sha256-Ge7pVrcCYNp8yNV+ZkBftLeCCSUhtO+HJHsSHT58jcs=";
};
-
nativeBuildInputs = [
+
build-system = [
setuptools
setuptools-scm
];
-
propagatedBuildInputs = [
+
dependencies = [
fsspec
xrootd
];
···
# Timeout related tests hang indifinetely
disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [ "tests/test_basicio.py" ];
-
meta = with lib; {
+
meta = {
description = "XRootD implementation for fsspec";
homepage = "https://github.com/CoffeaTeam/fsspec-xrootd";
changelog = "https://github.com/CoffeaTeam/fsspec-xrootd/releases/tag/v${version}";
-
license = licenses.bsd3;
-
maintainers = with maintainers; [ GaetanLepage ];
+
license = lib.licenses.bsd3;
+
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}