Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f4d24273e526
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c0f03051fa2c
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 13, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    mcous Michael Cousins
    Copy the full SHA
    c0f0305 View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/development/python-modules/pdfminer_six/default.nix
10 changes: 5 additions & 5 deletions pkgs/development/python-modules/pdfminer_six/default.nix
Original file line number Diff line number Diff line change
@@ -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 {
pname = "pdfminer_six";
version = "20170720";
version = "20181108";

src = fetchFromGitHub {
owner = "pdfminer";
repo = "pdfminer.six";
rev = "${version}";
sha256 = "0vax5k0a8qn8x86ybpzqydk7x3hajsk8b6xf3y610j19mgag6wvs";
sha256 = "1v8pcx43fgidv1g54s92k85anvcss08blkhm4yi1hn1ybl0mmw6c";
};

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

checkInputs = [ nose pytest ];
checkPhase = ''
${python.interpreter} -m pytest