My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/waitress-django/default.nix

16 lines
356 B

{ lib, buildPythonPackage, django, waitress }:
buildPythonPackage {
pname = "waitress-django";
version = "1.0.0";
src = ./.;
pythonPath = [ django waitress ];
doCheck = false;
meta = with lib; {
description = "A waitress WSGI server serving django";
license = licenses.mit;
maintainers = with maintainers; [ basvandijk ];
};
}