1 { lib, buildPythonPackage, fetchFromGitHub, isPy3k, cryptography, chardet, nose, sortedcontainers }:
3 buildPythonPackage rec {
4 pname = "pdfminer_six";
9 # No tests in PyPi Tarball
10 src = fetchFromGitHub {
12 repo = "pdfminer.six";
14 sha256 = "1a2fxxnnjqbx344znpvx7cnv1881dk6585ibw01inhfq3w6yj2lr";
17 propagatedBuildInputs = [ chardet cryptography sortedcontainers ];
19 checkInputs = [ nose ];
25 description = "PDF parser and analyzer";
26 homepage = "https://github.com/pdfminer/pdfminer.six";
27 license = licenses.mit;
28 maintainers = with maintainers; [ psyanticy marsam ];