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

python312Packages.arsenic: add patch to replace distutils

+8
+8
pkgs/development/python-modules/arsenic/default.nix
··· 5 5 buildPythonPackage, 6 6 fetchFromGitHub, 7 7 fetchpatch, 8 + packaging, 8 9 poetry-core, 9 10 pythonRelaxDepsHook, 10 11 pythonOlder, ··· 32 33 url = "https://github.com/HENNGE/arsenic/commit/ca82894a5f1e832ab9283a245258b334bdd48855.patch"; 33 34 hash = "sha256-ECCUaJF4MRmFOKH1C6HowJ+zmbEPPiS7h9DlKw5otZc="; 34 35 }) 36 + # Replace distutils with packaging, https://github.com/HENNGE/arsenic/pull/166 37 + (fetchpatch { 38 + name = "replace-distutils.patch"; 39 + url = "https://github.com/HENNGE/arsenic/commit/440faed7d2a8fbd635a135c007051ea494e72873.patch"; 40 + hash = "sha256-QbOH6EdFKZxm1VaXRiTbJ3zIzEKVet9GUQDaJnmSNQw="; 41 + }) 35 42 ]; 36 43 37 44 pythonRelaxDeps = [ "structlog" ]; ··· 43 50 dependencies = [ 44 51 aiohttp 45 52 attrs 53 + packaging 46 54 structlog 47 55 ]; 48 56