pythonPackages.asgiref: fix double declaration

Fix a rebase error
This commit is contained in:
Lancelot SIX 2017-05-02 11:59:51 +02:00
parent be55657958
commit 770b3164be
No known key found for this signature in database
GPG Key ID: 02E1542BA66FB047

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