mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 03:53:47 +00:00
pythonPackages.pdfminer: 20170720 -> 20181108
This commit is contained in:
parent
f4d24273e5
commit
c0f03051fa
@ -1,18 +1,18 @@
|
|||||||
{ stdenv, buildPythonPackage, python, fetchFromGitHub, six, pycryptodome, chardet, nose, pytest }:
|
{ stdenv, buildPythonPackage, python, fetchFromGitHub, six, pycryptodome, chardet, nose, pytest, sortedcontainers }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pdfminer_six";
|
pname = "pdfminer_six";
|
||||||
version = "20170720";
|
version = "20181108";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "pdfminer";
|
owner = "pdfminer";
|
||||||
repo = "pdfminer.six";
|
repo = "pdfminer.six";
|
||||||
rev = "${version}";
|
rev = "${version}";
|
||||||
sha256 = "0vax5k0a8qn8x86ybpzqydk7x3hajsk8b6xf3y610j19mgag6wvs";
|
sha256 = "1v8pcx43fgidv1g54s92k85anvcss08blkhm4yi1hn1ybl0mmw6c";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ six pycryptodome chardet ];
|
propagatedBuildInputs = [ six pycryptodome chardet sortedcontainers ];
|
||||||
|
|
||||||
checkInputs = [ nose pytest ];
|
checkInputs = [ nose pytest ];
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
${python.interpreter} -m pytest
|
${python.interpreter} -m pytest
|
||||||
|
Loading…
Reference in New Issue
Block a user