Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python313Python.gfal2-python: 1.12.2 -> 1.13.0, unbroken

Changed files
+2 -5
pkgs
development
python-modules
gfal2-python
+2 -5
pkgs/development/python-modules/gfal2-python/default.nix
··· 13 13 }: 14 14 buildPythonPackage rec { 15 15 pname = "gfal2-python"; 16 - version = "1.12.2"; 16 + version = "1.13.0"; 17 17 src = fetchFromGitHub { 18 18 owner = "cern-fts"; 19 19 repo = "gfal2-python"; 20 20 rev = "v${version}"; 21 - hash = "sha256-Xk+gLTrqfWb0kGB6QhnM62zAHVFb8rRAqCIBxn0V824="; 21 + hash = "sha256-TF8EwT1UEtB9lhfq8Jkn9rrSkSxMSLzuAywfB23K1kE="; 22 22 }; 23 23 nativeBuildInputs = [ 24 24 cmake ··· 44 44 homepage = "https://github.com/cern-fts/gfal2-python"; 45 45 license = licenses.asl20; 46 46 maintainers = with maintainers; [ ShamrockLee ]; 47 - # It currently fails to build against Python 3.12 or later, 48 - # complaining CMake faililng to find Python include path, library path and site package path. 49 - broken = pythonAtLeast "3.12"; 50 47 }; 51 48 }