summary refs log tree commit diff
path: root/pkgs/development/python-modules/pdfminer_six/default.nix
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-04-01 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-04-01 04:20:00 -0500
commit899c35ccc1859b2568c8ef1c9138318dd1d82c50 (patch)
tree77b20336558ed6af3fcd62c036ecfb4edbb4058e /pkgs/development/python-modules/pdfminer_six/default.nix
parent74cee86d58e209e73b1caf43c4e234e40653edb2 (diff)
downloadnixpkgs-899c35ccc1859b2568c8ef1c9138318dd1d82c50.tar
nixpkgs-899c35ccc1859b2568c8ef1c9138318dd1d82c50.tar.gz
nixpkgs-899c35ccc1859b2568c8ef1c9138318dd1d82c50.tar.bz2
nixpkgs-899c35ccc1859b2568c8ef1c9138318dd1d82c50.tar.lz
nixpkgs-899c35ccc1859b2568c8ef1c9138318dd1d82c50.tar.xz
nixpkgs-899c35ccc1859b2568c8ef1c9138318dd1d82c50.tar.zst
nixpkgs-899c35ccc1859b2568c8ef1c9138318dd1d82c50.zip
python3Packages.pdfminer: 20191020 -> 20200402
Diffstat (limited to 'pkgs/development/python-modules/pdfminer_six/default.nix')
-rw-r--r--pkgs/development/python-modules/pdfminer_six/default.nix24
1 files changed, 17 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/pdfminer_six/default.nix b/pkgs/development/python-modules/pdfminer_six/default.nix
index 5f3cc06b5af..ace2b618ef2 100644
--- a/pkgs/development/python-modules/pdfminer_six/default.nix
+++ b/pkgs/development/python-modules/pdfminer_six/default.nix
@@ -1,19 +1,29 @@
-{ stdenv, buildPythonPackage, fetchFromGitHub, isPy3k, six, pycryptodome, chardet, nose, sortedcontainers }:
+{ stdenv, buildPythonPackage, fetchFromGitHub, isPy3k, pycryptodome, chardet, nose, sortedcontainers, fetchpatch }:
 
 buildPythonPackage rec {
   pname = "pdfminer_six";
-  version = "20191020";
+  version = "20200402";
+
+  disabled = !isPy3k;
 
   # No tests in PyPi Tarball
   src = fetchFromGitHub {
     owner = "pdfminer";
     repo = "pdfminer.six";
     rev = version;
-    sha256 = "1fqn4ilcscvw6ws9a1yqiprha9d3rgw3d0280clkbk6s4l26wm9h";
+    sha256 = "1wl64r3ifpwi7mm5pcxc0ji7w380nxcq3zrv66n95lglm4zqkf26";
   };
 
-  propagatedBuildInputs = [ six pycryptodome sortedcontainers ]
-    ++ stdenv.lib.optionals isPy3k [ chardet ];
+  patches = [
+    # Add shebang line to scripts. See: https://github.com/pdfminer/pdfminer.six/pull/408
+    (fetchpatch {
+      url = "https://github.com/pdfminer/pdfminer.six/commit/0c2f44b6de064d9a3cea99bde5b8e9c6a525a69c.patch";
+      sha256 = "1vml66grnvg4g26mya24kiyxsz809d4mr7wz8qmawjbn4ss65y21";
+      excludes = [ "CHANGELOG.md" ];
+    })
+  ];
+
+  propagatedBuildInputs = [ chardet pycryptodome sortedcontainers ];
 
   checkInputs = [ nose ];
   checkPhase = ''
@@ -21,8 +31,8 @@ buildPythonPackage rec {
   '';
 
   meta = with stdenv.lib; {
-    description = "fork of PDFMiner using six for Python 2+3 compatibility";
-    homepage = https://github.com/pdfminer/pdfminer.six;
+    description = "PDF parser and analyzer";
+    homepage = "https://github.com/pdfminer/pdfminer.six";
     license = licenses.mit;
     maintainers = with maintainers; [ psyanticy marsam ];
   };