nixpkgs/pkgs/development/python-modules/asgiref/default.nix
2017-05-02 09:28:28 +02:00

19 lines
485 B
Nix

{ stdenv, buildPythonPackage, fetchurl, six }:
buildPythonPackage rec {
name = "asgiref-${version}";
version = "1.1.1";
src = fetchurl {
url = "mirror://pypi/a/asgiref/${name}.tar.gz";
sha256 = "0gayxnysknwg8hxb5kvmi2mmd5dnrhgza23daf8j25w3nj2drars";
};
propagatedBuildInputs = [ six ];
meta = with stdenv.lib; {
description = "Reference ASGI adapters and channel layers";
license = licenses.bsd3;
homepage = https://github.com/django/asgiref;
};
}