Skip to content

Commit

Permalink
Merge pull request #93574 from marsam/update-pdfminer
Browse files Browse the repository at this point in the history
pdfminer: 20200517 -> 20200720
  • Loading branch information
marsam committed Jul 22, 2020
2 parents 4a7bb7d + cdc2c75 commit f3f6449
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/development/python-modules/pdfminer_six/default.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, isPy3k, pycryptodome, chardet, nose, sortedcontainers }:
{ stdenv, buildPythonPackage, fetchFromGitHub, isPy3k, cryptography, chardet, nose, sortedcontainers }:

buildPythonPackage rec {
pname = "pdfminer_six";
version = "20200517";
version = "20200720";

disabled = !isPy3k;

Expand All @@ -11,10 +11,10 @@ buildPythonPackage rec {
owner = "pdfminer";
repo = "pdfminer.six";
rev = version;
sha256 = "00272pxkh6djm37yvlvgd06w7ycf35srwk6n3p58ppw5hgmpkhc2";
sha256 = "19cnl1b6mrk9i18a1k4vdl5k85ww8yhfq89w3fxh6rb0fla5d71i";
};

propagatedBuildInputs = [ chardet pycryptodome sortedcontainers ];
propagatedBuildInputs = [ chardet cryptography sortedcontainers ];

checkInputs = [ nose ];
checkPhase = ''
Expand Down

0 comments on commit f3f6449

Please sign in to comment.