nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python310Packages.kombu: Drop faulty version specifier in requirements

> Executing setuptoolsBuildPhase
> /nix/store/9z2cm958bxarf7n5i48czm7p7lwf9s58-python3.10-setuptools-67.4.0/lib/python3.10/site-packages/setuptools/config/setupcfg.py:520: SetuptoolsDeprecationWarning: The license_file parameter is deprecated, use license_files instead.
> warnings.warn(msg, warning_class)
> error in kombu setup command: 'tests_require' must be a string or list of strings containing valid project/version requirement specifiers; Expected end or semicolon (after name and no valid version specifier)
> pytz>dev
> ^

+5
+5
pkgs/development/python-modules/kombu/default.nix
··· 25 25 hash = "sha256-N87j7nJflOqLsXPqq3wXYCA+pTu+uuImMoYA+dJ5lhA="; 26 26 }; 27 27 28 + postPatch = '' 29 + substituteInPlace requirements/test.txt \ 30 + --replace "pytz>dev" "pytz" 31 + ''; 32 + 28 33 propagatedBuildInputs = [ 29 34 amqp 30 35 vine