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

authored by Sandro Jäckel and committed by Jonathan Ringer b153e63f 15905ed1

+14 -5
+14 -5
pkgs/development/python-modules/sphinxcontrib-bibtex/default.nix
··· 1 - { stdenv, buildPythonPackage, fetchPypi, isPy3k 2 - , oset, pybtex, pybtex-docutils, sphinx 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , isPy3k 5 + , oset 6 + , pybtex 7 + , pybtex-docutils 8 + , sphinx 3 9 }: 4 10 5 11 buildPythonPackage rec { ··· 15 21 16 22 propagatedBuildInputs = [ oset pybtex pybtex-docutils sphinx ]; 17 23 18 - meta = { 24 + doCheck = false; 25 + pythonImportsCheck = [ "sphinxcontrib.bibtex" ]; 26 + 27 + meta = with lib; { 19 28 description = "A Sphinx extension for BibTeX style citations"; 20 29 homepage = "https://github.com/mcmtroffaes/sphinxcontrib-bibtex"; 21 - license = stdenv.lib.licenses.bsd2; 30 + license = licenses.bsd2; 31 + maintainers = with maintainers; [ SuperSandro2000 ]; 22 32 }; 23 - 24 33 }