pythonPackages.daphne: 1.0.3 -> 1.2.0
This commit is contained in:
parent
528a452043
commit
519d3d0451
|
@ -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; {
|
||||||
|
|
Loading…
Reference in New Issue