asgiref: 3.8.1 -> 3.9.1 (#435665)

This commit is contained in:
Ryan Lahfa
2025-09-11 21:02:56 +02:00
committed by GitHub
@@ -10,17 +10,17 @@
}:
buildPythonPackage rec {
version = "3.8.1";
version = "3.9.1";
pname = "asgiref";
format = "setuptools";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "django";
repo = "asgiref";
tag = version;
hash = "sha256-xepMbxglBpHL7mnJYlnvNUgixrFwf/Tc6b1zL4Wy+to=";
hash = "sha256-VD8OQP+Xq3JpUz3fZRl6g+SL7mGZjeHjOU9Cd+scYzc=";
};
propagatedBuildInputs = [ typing-extensions ];