pythonPackages.daphne: 1.0.3 -> 1.2.0

This commit is contained in:
Lancelot SIX 2017-04-26 15:07:22 +02:00
parent 528a452043
commit 519d3d0451
No known key found for this signature in database
GPG Key ID: 02E1542BA66FB047
1 changed files with 4 additions and 3 deletions

View File

@ -1,15 +1,16 @@
{ stdenv, buildPythonPackage, fetchurl, { stdenv, buildPythonPackage, fetchurl,
asgiref, autobahn, twisted asgiref, autobahn, twisted, hypothesis
}: }:
buildPythonPackage rec { buildPythonPackage rec {
name = "daphne-${version}"; name = "daphne-${version}";
version = "1.0.3"; version = "1.2.0";
src = fetchurl { src = fetchurl {
url = "mirror://pypi/d/daphne/${name}.tar.gz"; url = "mirror://pypi/d/daphne/${name}.tar.gz";
sha256 = "1bpavq3sxr66mqwnnfg67pcchyaq7siqyin2r89aqadf6nab58d2"; sha256 = "084216isw7rwy693i62rbd8kvpqx418jvf1q72cplv833wz3in7l";
}; };
buildInputs = [ hypothesis ];
propagatedBuildInputs = [ asgiref autobahn twisted ]; propagatedBuildInputs = [ asgiref autobahn twisted ];
meta = with stdenv.lib; { meta = with stdenv.lib; {