about summary refs log tree commit diff
path: root/pkgs/development/python-modules/waitress
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-29 09:33:21 -0400
committerChris Ostrouchov <chris.ostrouchov@gmail.com>2018-10-30 00:50:59 -0400
commit88c225d45a96318bb5f225a0e020f4d260969002 (patch)
treee60e634c3b7e01cd5f1702f7d9115597579a82e3 /pkgs/development/python-modules/waitress
parent1fe585403d17c3a7995bdfa50408aaed15965117 (diff)
pythonPackages.waitress: refactor move to python-modules
Diffstat (limited to 'pkgs/development/python-modules/waitress')
-rw-r--r--pkgs/development/python-modules/waitress/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/waitress/default.nix b/pkgs/development/python-modules/waitress/default.nix
new file mode 100644
index 0000000000000..2c1536a7d8a30
--- /dev/null
+++ b/pkgs/development/python-modules/waitress/default.nix
@@ -0,0 +1,24 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "waitress";
+  version = "1.0.2";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0pw6yyxi348r2xpq3ykqnf7gwi881azv2422d2ixb0xi5jws2ky7";
+  };
+
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+     homepage = https://github.com/Pylons/waitress;
+     description = "Waitress WSGI server";
+     license = licenses.zpl20;
+     maintainers = with maintainers; [ garbas domenkozar ];
+  };
+
+}