From d2bc51504563def9db3ca6c0a62c3e128131a50f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 6 Jun 2022 18:30:11 +0000 Subject: [PATCH] python2Packages.click: remove --- .../python2-modules/click/default.nix | 28 ------------------- pkgs/top-level/python2-packages.nix | 2 -- 2 files changed, 30 deletions(-) delete mode 100644 pkgs/development/python2-modules/click/default.nix diff --git a/pkgs/development/python2-modules/click/default.nix b/pkgs/development/python2-modules/click/default.nix deleted file mode 100644 index fcbd4d0981af..000000000000 --- a/pkgs/development/python2-modules/click/default.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ lib, buildPythonPackage, fetchPypi, locale, pytestCheckHook }: - -buildPythonPackage rec { - pname = "click"; - version = "7.1.2"; - - src = fetchPypi { - inherit pname version; - sha256 = "d2b5255c7c6349bc1bd1e59e08cd12acbbd63ce649f2588755783aa94dfb6b1a"; - }; - - postPatch = '' - substituteInPlace src/click/_unicodefun.py \ - --replace "'locale'" "'${locale}/bin/locale'" - ''; - - checkInputs = [ pytestCheckHook ]; - - meta = with lib; { - homepage = "https://click.palletsprojects.com/"; - description = "Create beautiful command line interfaces in Python"; - longDescription = '' - A Python package for creating beautiful command line interfaces in a - composable way, with as little code as necessary. - ''; - license = licenses.bsd3; - }; -} diff --git a/pkgs/top-level/python2-packages.nix b/pkgs/top-level/python2-packages.nix index a83960c415f6..77faefaa15b5 100644 --- a/pkgs/top-level/python2-packages.nix +++ b/pkgs/top-level/python2-packages.nix @@ -18,8 +18,6 @@ with self; with super; { cheetah = callPackage ../development/python2-modules/cheetah { }; - click = callPackage ../development/python2-modules/click { }; - configparser = callPackage ../development/python2-modules/configparser { }; construct = callPackage ../development/python2-modules/construct { };