3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.asgiref: init at 0.14.0

This commit is contained in:
Lancelot SIX 2016-09-15 15:09:24 +02:00
parent a1e887af52
commit 9283121bbb
No known key found for this signature in database
GPG key ID: 02E1542BA66FB047

View file

@ -588,6 +588,24 @@ in modules // {
};
};
asgiref = buildPythonPackage rec {
name = "asgiref-${version}";
version = "0.14.0";
src = pkgs.fetchurl {
url = "mirror://pypi/a/asgiref/${name}.tar.gz";
sha256 = "1ww4z14pd7g2mwz5nyvxm4rif0rsm9h8i0lwk78v58b2j45r43lc";
};
propagatedBuildInputs = with self ; [ six ];
meta = {
description = "Reference ASGI adapters and channel layers";
license = licenses.bsd3;
homepage = https://github.com/django/asgiref;
};
};
python-editor = buildPythonPackage rec {
name = "python-editor-${version}";
version = "0.4";