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