nixpkgs/pkgs/development/python-modules/daphne/default.nix

23 lines
577 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi,
asgiref, autobahn, twisted, hypothesis
2017-02-20 18:31:36 +03:00
}:
buildPythonPackage rec {
pname = "daphne";
name = "${pname}-${version}";
2018-02-17 16:19:10 +03:00
version = "2.0.3";
2017-02-20 18:31:36 +03:00
src = fetchPypi {
inherit pname version;
sha256 = "bb2075ce35ca00f2e5440cc034dfebd5c00d346de62ea45f099db089b868c31f";
2017-02-20 18:31:36 +03:00
};
buildInputs = [ hypothesis ];
2017-02-20 18:31:36 +03:00
propagatedBuildInputs = [ asgiref autobahn twisted ];
meta = with stdenv.lib; {
description = "Django ASGI (HTTP/WebSocket) server";
license = licenses.bsd3;
homepage = https://github.com/django/daphne;
};
}