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

python313Packages.formencode: 2.1.0 -> 2.1.1

+3 -4
+3 -4
pkgs/development/python-modules/formencode/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "formencode"; 16 - version = "2.1.0"; 16 + version = "2.1.1"; 17 17 pyproject = true; 18 18 19 19 disabled = pythonOlder "3.7"; 20 20 21 21 src = fetchPypi { 22 - pname = "FormEncode"; 23 - inherit version; 24 - hash = "sha256-63TSIweKKM8BX6iJZsbjTy0Y11EnMY1lwUS+2a/EJj8="; 22 + inherit pname version; 23 + hash = "sha256-4X8WGZ0jLlT2eRIATzrTM827uBoaGhAjis8JurmfkZk="; 25 24 }; 26 25 27 26 postPatch = ''