summary refs log tree commit diff
path: root/pkgs/development/python-modules/Pygments
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2022-01-16 07:34:26 +0100
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2022-01-16 10:00:16 +0100
commitae18d68b6b117528e6cd72325ead36b48562d43f (patch)
tree9f9d765a7208d5d436184dc3656b164fd0581f7f /pkgs/development/python-modules/Pygments
parent2027fb600d891379c53c4762463e65d040359682 (diff)
downloadnixpkgs-ae18d68b6b117528e6cd72325ead36b48562d43f.tar
nixpkgs-ae18d68b6b117528e6cd72325ead36b48562d43f.tar.gz
nixpkgs-ae18d68b6b117528e6cd72325ead36b48562d43f.tar.bz2
nixpkgs-ae18d68b6b117528e6cd72325ead36b48562d43f.tar.lz
nixpkgs-ae18d68b6b117528e6cd72325ead36b48562d43f.tar.xz
nixpkgs-ae18d68b6b117528e6cd72325ead36b48562d43f.tar.zst
nixpkgs-ae18d68b6b117528e6cd72325ead36b48562d43f.zip
python2.pkgs: move expressions into python2-modules/ folder
Another step in further separating python2 from python3.
Diffstat (limited to 'pkgs/development/python-modules/Pygments')
-rw-r--r--pkgs/development/python-modules/Pygments/2_5.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/development/python-modules/Pygments/2_5.nix b/pkgs/development/python-modules/Pygments/2_5.nix
deleted file mode 100644
index aa59c370d2e..00000000000
--- a/pkgs/development/python-modules/Pygments/2_5.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, fetchpatch
-, docutils
-}:
-
-buildPythonPackage rec {
-  pname = "Pygments";
-  version = "2.5.2";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "98c8aa5a9f778fcd1026a17361ddaf7330d1b7c62ae97c3bb0ae73e0b9b6b0fe";
-  };
-
-  patches = [
-    (fetchpatch {
-      name = "CVE-2021-27291.patch";
-      url = "https://github.com/pygments/pygments/commit/2e7e8c4a7b318f4032493773732754e418279a14.patch";
-      sha256 = "0ap7jgkmvkkzijabsgnfrwl376cjsxa4jmzvqysrkwpjq3q4rxpa";
-      excludes = ["CHANGES"];
-    })
-  ];
-
-  propagatedBuildInputs = [ docutils ];
-
-  # Circular dependency with sphinx
-  doCheck = false;
-
-  meta = {
-    homepage = "https://pygments.org/";
-    description = "A generic syntax highlighter";
-    license = lib.licenses.bsd2;
-    maintainers = with lib.maintainers; [ ];
-  };
-}