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

python.pkgs.faker: lift restrictive dependencies (#63512)

Fixes the test suite
https://github.com/joke2k/faker/issues/970

authored by Timo Kaufmann and committed by GitHub 4fa9669b 1e2f49ab

+4
+4
pkgs/development/python-modules/faker/default.nix
··· 46 # see https://github.com/joke2k/faker/pull/911, fine since we pin correct 47 # versions for python2 48 substituteInPlace setup.py --replace "more-itertools<6.0.0" "more-itertools" 49 ''; 50 51 meta = with lib; {
··· 46 # see https://github.com/joke2k/faker/pull/911, fine since we pin correct 47 # versions for python2 48 substituteInPlace setup.py --replace "more-itertools<6.0.0" "more-itertools" 49 + 50 + # https://github.com/joke2k/faker/issues/970 51 + substituteInPlace setup.py --replace "random2==1.0.1" "random2>=1.0.1" 52 + substituteInPlace setup.py --replace "freezegun==0.3.11" "freezegun>=0.3.11" 53 ''; 54 55 meta = with lib; {