pythonPackages.channels: 1.0.2 -> 1.0.3
This commit is contained in:
parent
fee43308ed
commit
8103499e9d
23
pkgs/development/python-modules/channels/default.nix
Normal file
23
pkgs/development/python-modules/channels/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchurl,
|
||||||
|
asgiref, django, daphne
|
||||||
|
}:
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "channels-${version}";
|
||||||
|
version = "1.0.3";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://pypi/c/channels/${name}.tar.gz";
|
||||||
|
sha256 = "1bwlqnfc27p1qnjmdl8jnr941gpl8ggnxxfy8anh9qgmg20q9pfd";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Files are missing in the distribution
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ asgiref django daphne ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Brings event-driven capabilities to Django with a channel system";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
homepage = https://github.com/django/channels;
|
||||||
|
};
|
||||||
|
}
|
@ -2391,26 +2391,7 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
channels = buildPythonPackage rec {
|
channels = callPackage ../development/python-modules/channels {};
|
||||||
name = "channels-${version}";
|
|
||||||
version = "1.0.2";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/c/channels/${name}.tar.gz";
|
|
||||||
sha256 = "0d8fywg416p851i8vz26pmz8b47akg5z10yw7xc7i51cpmp7y5zj";
|
|
||||||
};
|
|
||||||
|
|
||||||
# Files are missing in the distribution
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self ; [ asgiref django daphne ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Brings event-driven capabilities to Django with a channel system";
|
|
||||||
license = licenses.bsd3;
|
|
||||||
homepage = https://github.com/django/channels;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
circus = buildPythonPackage rec {
|
circus = buildPythonPackage rec {
|
||||||
name = "circus-0.11.1";
|
name = "circus-0.11.1";
|
||||||
|
Loading…
Reference in New Issue
Block a user