23 buildPythonPackage rec {
28 src = fetchFromGitHub {
31 rev = "refs/tags/v${version}";
32 hash = "sha256-sBzVTst5Tp2oZZ+Xsg3M7uAMbucL6idlpYwHvib3EaY=";
35 pythonRelaxDeps = [ "lightning-utilities" ];
37 # Remove vendorized versioneer (incompatible with python 3.12)
42 build-system = [ versioneer ];
57 disabledTests = lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) [
58 # RuntimeError: DataLoader worker (pid(s) <...>) exited unexpectedly:
59 "test_progressive_resize_integration"
62 pythonImportsCheck = [
68 "rising.transforms.functional"
73 description = "High-performance data loading and augmentation library in PyTorch";
74 homepage = "https://rising.rtfd.io";
75 license = lib.licenses.mit;
76 maintainers = with lib.maintainers; [ bcdarwin ];