summary refs log tree commit diff
path: root/pkgs/development/python2-modules
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-12-09 08:09:23 -0800
committerRobert Schütz <nix@dotlambda.de>2022-12-09 08:09:23 -0800
commit5eb43616fece393fd7cf80cbbd20b1ce41dae9b6 (patch)
treea31716f3673dad68669cfc44ca1aaf6a49727153 /pkgs/development/python2-modules
parent3ff1f3d1c17fe85a822d40786872e8a788957d78 (diff)
downloadnixpkgs-5eb43616fece393fd7cf80cbbd20b1ce41dae9b6.tar
nixpkgs-5eb43616fece393fd7cf80cbbd20b1ce41dae9b6.tar.gz
nixpkgs-5eb43616fece393fd7cf80cbbd20b1ce41dae9b6.tar.bz2
nixpkgs-5eb43616fece393fd7cf80cbbd20b1ce41dae9b6.tar.lz
nixpkgs-5eb43616fece393fd7cf80cbbd20b1ce41dae9b6.tar.xz
nixpkgs-5eb43616fece393fd7cf80cbbd20b1ce41dae9b6.tar.zst
nixpkgs-5eb43616fece393fd7cf80cbbd20b1ce41dae9b6.zip
python2Packages.chardet: remove
Diffstat (limited to 'pkgs/development/python2-modules')
-rw-r--r--pkgs/development/python2-modules/chardet/default.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/development/python2-modules/chardet/default.nix b/pkgs/development/python2-modules/chardet/default.nix
deleted file mode 100644
index 5f6fe0a672a..00000000000
--- a/pkgs/development/python2-modules/chardet/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ lib, buildPythonPackage, fetchPypi, fetchpatch
-, pytest, pytest-runner, hypothesis }:
-
-buildPythonPackage rec {
-  pname = "chardet";
-  version = "3.0.4";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "1bpalpia6r5x1kknbk11p1fzph56fmmnp405ds8icksd3knr5aw4";
-  };
-
-  patches = [
-    # Add pytest 4 support. See: https://github.com/chardet/chardet/pull/174
-    (fetchpatch {
-      url = "https://github.com/chardet/chardet/commit/0561ddcedcd12ea1f98b7ddedb93686ed8a5ffa4.patch";
-      sha256 = "1y1xhjf32rdhq9sfz58pghwv794f3w2f2qcn8p6hp4pc8jsdrn2q";
-    })
-  ];
-
-  checkInputs = [ pytest pytest-runner hypothesis ];
-
-  meta = with lib; {
-    homepage = "https://github.com/chardet/chardet";
-    description = "Universal encoding detector";
-    license = licenses.lgpl2;
-    maintainers = with maintainers; [ domenkozar ];
-  };
-}