lol

python310Packages.adblock: Substitute bogus version

The upstream sets 0.0.0 as the version in pyprojecy.toml with no
indication, how the version gets set dynamically.

+5
+5
pkgs/development/python-modules/adblock/default.nix
··· 39 39 }) 40 40 ]; 41 41 42 + postPatch = '' 43 + substituteInPlace pyproject.toml \ 44 + --replace "0.0.0" "${version}" 45 + ''; 46 + 42 47 cargoDeps = rustPlatform.fetchCargoTarball { 43 48 inherit src; 44 49 name = "${pname}-${version}";