mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
pythonPackages.asgiref: 1.0.0 -> 1.1.1
This commit is contained in:
parent
b1d16c731f
commit
db0627336e
18
pkgs/development/python-modules/asgiref/default.nix
Normal file
18
pkgs/development/python-modules/asgiref/default.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
@ -808,6 +808,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
asgiref = callPackage ../development/python-modules/asgiref { };
|
||||
|
||||
asgi_ipc = buildPythonPackage rec {
|
||||
name = "asgi_ipc-${version}";
|
||||
version = "1.2.0";
|
||||
|
Loading…
Reference in New Issue
Block a user