pythonPackages.sphinxcontrib-bibtex: Disable tests, add maintainer, cleanups

This commit is contained in:
Sandro Jäckel 2021-01-16 14:08:47 +01:00 committed by Jonathan Ringer
parent 15905ed176
commit b153e63f07

View file

@ -1,5 +1,11 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy3k
, oset, pybtex, pybtex-docutils, sphinx
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, oset
, pybtex
, pybtex-docutils
, sphinx
}:
buildPythonPackage rec {
@ -15,10 +21,13 @@ buildPythonPackage rec {
propagatedBuildInputs = [ oset pybtex pybtex-docutils sphinx ];
meta = {
doCheck = false;
pythonImportsCheck = [ "sphinxcontrib.bibtex" ];
meta = with lib; {
description = "A Sphinx extension for BibTeX style citations";
homepage = "https://github.com/mcmtroffaes/sphinxcontrib-bibtex";
license = stdenv.lib.licenses.bsd2;
license = licenses.bsd2;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}