From fcc353908c34240b422429d7f46c28c9a51fb3d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benno=20F=C3=BCnfst=C3=BCck?= Date: Sun, 23 Oct 2016 22:12:34 +0200 Subject: [PATCH] uWSGI: remove duplicate package uWSGI is already packaged in servers/uwsgi --- pkgs/top-level/python-packages.nix | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index df5c4355dde..6b78a039ec2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -30758,21 +30758,4 @@ in modules // { maintainers = with maintainers; [ bennofs ]; }; }; - - uWSGI = buildPythonPackage rec { - name = "uWSGI-${version}"; - version = "2.0.14"; - src = pkgs.fetchurl { - url = "mirror://pypi/u/uwsgi/uwsgi-${version}.tar.gz"; - sha256 = "21b3d1ef926d835ff23576193a2c60d4c896d8e21567850cf0677a4764122887"; - }; - buildInputs = [ pkgs.ncurses.dev ]; - doCheck = false; - meta = with pkgs.stdenv.lib; { - description = "The uWSGI server"; - homepage = "https://uwsgi-docs.readthedocs.io/en/latest/"; - license = licenses.gpl2; - maintainers = with maintainers; [ bennofs ]; - }; - }; }