1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-23 18:37:02 +00:00
nixpkgs/pkgs/development/python-modules/asgiref/default.nix

20 lines
519 B
Nix
Raw Normal View History

2017-04-26 13:33:05 +01:00
{ stdenv, buildPythonPackage, fetchurl, six }:
buildPythonPackage rec {
2018-02-17 13:18:13 +00:00
version = "2.1.5";
pname = "asgiref";
name = "${pname}-${version}";
2017-04-26 13:33:05 +01:00
src = fetchurl {
url = "mirror://pypi/a/asgiref/${name}.tar.gz";
2018-02-17 13:18:13 +00:00
sha256 = "1a46196df28c67e046a54cc537ce5a8f6a59eb68649f54680d7e4fc3b113ab1b";
2017-04-26 13:33:05 +01:00
};
propagatedBuildInputs = [ six ];
meta = with stdenv.lib; {
description = "Reference ASGI adapters and channel layers";
license = licenses.bsd3;
homepage = https://github.com/django/asgiref;
};
}