Merge pull request #87346 from r-ryantm/auto-update/python2.7-latexcodec
python27Packages.latexcodec: 1.0.7 -> 2.0.0
This commit is contained in:
commit
a6a5cba049
@ -1,16 +1,22 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi, six }:
|
{ stdenv, buildPythonPackage, fetchPypi, six, pytest }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "latexcodec";
|
pname = "latexcodec";
|
||||||
version = "1.0.7";
|
version = "2.0.0";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "0wnp3yqcgx0rpy8dz51vh75lbp2qif67da19zi7m3ca98n887hgb";
|
sha256 = "0pyzhidpnc3q3rh9d5hxhzv99rl5limyyrll7xcyssci92fn8gyd";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ six ];
|
propagatedBuildInputs = [ six ];
|
||||||
|
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
pytest
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://github.com/mcmtroffaes/latexcodec";
|
homepage = "https://github.com/mcmtroffaes/latexcodec";
|
||||||
description = "Lexer and codec to work with LaTeX code in Python";
|
description = "Lexer and codec to work with LaTeX code in Python";
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi
|
{ stdenv, buildPythonPackage, fetchPypi, isPy3k
|
||||||
, oset, pybtex, pybtex-docutils, sphinx
|
, oset, pybtex, pybtex-docutils, sphinx
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -6,6 +6,8 @@ buildPythonPackage rec {
|
|||||||
version = "1.0.0";
|
version = "1.0.0";
|
||||||
pname = "sphinxcontrib-bibtex";
|
pname = "sphinxcontrib-bibtex";
|
||||||
|
|
||||||
|
disabled = !isPy3k;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "629612b001f86784669d65e662377a482052decfd9a0a17c46860878eef7b9e0";
|
sha256 = "629612b001f86784669d65e662377a482052decfd9a0a17c46860878eef7b9e0";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user