16 buildPythonPackage rec {
21 disabled = pythonOlder "3.8";
23 src = fetchFromGitHub {
26 rev = "refs/tags/${version}";
27 hash = "sha256-JkmS+QVF1MTdLID+c686Fd8L3kA+AIr7sLCaAoABh+s=";
30 build-system = [ setuptools ];
37 optional-dependencies = {
46 ] ++ lib.flatten (builtins.attrValues optional-dependencies);
48 pythonImportsCheck = [ "channels" ];
51 description = "Brings event-driven capabilities to Django with a channel system";
52 homepage = "https://github.com/django/channels";
53 changelog = "https://github.com/django/channels/blob/${version}/CHANGELOG.txt";
54 license = licenses.bsd3;
55 maintainers = with maintainers; [ fab ];