python.pkgs.bibtexparser: 1.0.1 -> 1.1.0

This commit is contained in:
Robert Schütz 2019-01-17 19:40:58 +01:00 committed by Frederik Rietdijk
parent b36f9183f7
commit 78beae43b0

View File

@ -1,24 +1,24 @@
{ lib { lib
, buildPythonPackage, fetchFromGitHub , buildPythonPackage, fetchFromGitHub
, future, pyparsing , future, pyparsing
, glibcLocales, nose , glibcLocales, nose, unittest2
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "bibtexparser"; pname = "bibtexparser";
version = "1.0.1"; version = "1.1.0";
# PyPI tarball does not ship tests # PyPI tarball does not ship tests
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "sciunto-org"; owner = "sciunto-org";
repo = "python-${pname}"; repo = "python-${pname}";
rev = "v${version}"; rev = "v${version}";
sha256 = "0lmlarkfbq2hp1wa04a62245jr2mqizqsdlgilj5aq6vy92gr6ai"; sha256 = "1yj3hqnmkjh0sjjhmlm4097mmz98kna8rn0dd9g8zaw9g1a35h8c";
}; };
propagatedBuildInputs = [ future pyparsing ]; propagatedBuildInputs = [ future pyparsing ];
checkInputs = [ nose glibcLocales ]; checkInputs = [ nose unittest2 glibcLocales ];
checkPhase = '' checkPhase = ''
LC_ALL="en_US.UTF-8" nosetests LC_ALL="en_US.UTF-8" nosetests