summary refs log blame commit diff
path: root/pkgs/development/python-modules/daphne/default.nix
blob: 34cc597ede95399cd9dfa4029daa37849fe42b55 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                       
                                        


                             
                    


                                                  
                                                                    

    
                               







                                                        
{ stdenv, buildPythonPackage, fetchurl,
  asgiref, autobahn, twisted, hypothesis
}:
buildPythonPackage rec {
  name = "daphne-${version}";
  version = "1.2.0";

  src = fetchurl {
    url = "mirror://pypi/d/daphne/${name}.tar.gz";
    sha256 = "084216isw7rwy693i62rbd8kvpqx418jvf1q72cplv833wz3in7l";
  };

  buildInputs = [ hypothesis ];
  propagatedBuildInputs = [ asgiref autobahn twisted ];

  meta = with stdenv.lib; {
    description = "Django ASGI (HTTP/WebSocket) server";
    license = licenses.bsd3;
    homepage = https://github.com/django/daphne;
  };
}