lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

python313Packages.servefile: fix build

fixes https://hydra.nixos.org/build/290702043

+5 -1
+5 -1
pkgs/development/python-modules/servefile/default.nix
··· 1 1 { 2 2 buildPythonPackage, 3 3 fetchFromGitHub, 4 + legacy-cgi, 4 5 lib, 5 6 pyopenssl, 6 7 pytestCheckHook, 8 + pythonAtLeast, 7 9 requests, 8 10 }: 9 11 ··· 19 21 hash = "sha256-hIqXwhmvstCslsCO973oK5FF2c8gZJ0wNUI/z8W+OjU="; 20 22 }; 21 23 22 - propagatedBuildInputs = [ pyopenssl ]; 24 + dependencies = [ 25 + pyopenssl 26 + ] ++ lib.optionals (pythonAtLeast "3.13") [ legacy-cgi ]; 23 27 24 28 nativeCheckInputs = [ 25 29 pytestCheckHook