pythonPackages.sphinxcontrib-bibtex: Disable tests, add maintainer, cleanups
This commit is contained in:
parent
15905ed176
commit
b153e63f07
@ -1,5 +1,11 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi, isPy3k
|
{ lib
|
||||||
, oset, pybtex, pybtex-docutils, sphinx
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, isPy3k
|
||||||
|
, oset
|
||||||
|
, pybtex
|
||||||
|
, pybtex-docutils
|
||||||
|
, sphinx
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -15,10 +21,13 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
propagatedBuildInputs = [ oset pybtex pybtex-docutils sphinx ];
|
propagatedBuildInputs = [ oset pybtex pybtex-docutils sphinx ];
|
||||||
|
|
||||||
meta = {
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "sphinxcontrib.bibtex" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
description = "A Sphinx extension for BibTeX style citations";
|
description = "A Sphinx extension for BibTeX style citations";
|
||||||
homepage = "https://github.com/mcmtroffaes/sphinxcontrib-bibtex";
|
homepage = "https://github.com/mcmtroffaes/sphinxcontrib-bibtex";
|
||||||
license = stdenv.lib.licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user