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

python313Packages.faraday-agent-parameters-types: 1.7.3 -> 1.8.0 (#407657)

authored by Fabian Affolter and committed by GitHub 9cc8cd7b 97ea2973

+4 -2
+4 -2
pkgs/development/python-modules/faraday-agent-parameters-types/default.nix
··· 7 7 pytestCheckHook, 8 8 pythonOlder, 9 9 setuptools, 10 + validators, 10 11 }: 11 12 12 13 buildPythonPackage rec { 13 14 pname = "faraday-agent-parameters-types"; 14 - version = "1.7.3"; 15 + version = "1.8.0"; 15 16 pyproject = true; 16 17 17 18 disabled = pythonOlder "3.7"; ··· 19 20 src = fetchPypi { 20 21 pname = "faraday_agent_parameters_types"; 21 22 inherit version; 22 - hash = "sha256-dpMxmCFo7e+/VA1SdpdSYRKR9rvr7zQWTri4pJt/4PY="; 23 + hash = "sha256-ZyTaQN6T+F8QKPuTfGcEtdKM/2hvtekghG4UwtER02A="; 23 24 }; 24 25 25 26 postPatch = '' ··· 32 33 dependencies = [ 33 34 marshmallow 34 35 packaging 36 + validators 35 37 ]; 36 38 37 39 nativeCheckInputs = [ pytestCheckHook ];