lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #18197 from nand0p/sphinx-1-3-6-test-fix

sphinx: sphinx-1.3.6 test fixup

authored by

Frederik Rietdijk and committed by
GitHub
f3e76de8 3e695874

+20 -16
+20 -16
pkgs/top-level/python-packages.nix
··· 22882 22882 22883 22883 22884 22884 sphinx = buildPythonPackage (rec { 22885 - name = "Sphinx-1.3.6"; 22886 - 22887 - # 1.4 is broken 22888 - # https://github.com/sphinx-doc/sphinx/issues/2394 22889 - 22885 + name = "${pname}-${version}"; 22886 + pname = "Sphinx"; 22887 + version = "1.3.6"; 22890 22888 src = pkgs.fetchurl { 22891 - url = "mirror://pypi/S/Sphinx/${name}.tar.gz"; 22889 + url = "mirror://pypi/S/${pname}/${name}.tar.gz"; 22892 22890 sha256 = "12pzlfkjjlwgvsj56k0y809jpx5mgcs9548k1l4kdbr028ifjfqb"; 22893 22891 }; 22894 - 22895 22892 LC_ALL = "en_US.UTF-8"; 22896 - checkPhase = '' 22897 - PYTHON=${python.executable} make test 22898 - ''; 22899 - 22900 - buildInputs = with self; [ mock pkgs.glibcLocales ]; 22893 + buildInputs = with self; [ nose simplejson mock pkgs.glibcLocales ]; 22894 + patchPhase = '' sed -i '$ d' tests/test_setup_command.py ''; 22895 + checkPhase = '' PYTHON=${python.executable} make test ''; 22901 22896 propagatedBuildInputs = with self; [ 22902 - docutils jinja2 pygments sphinx_rtd_theme 22903 - alabaster Babel snowballstemmer six nose 22897 + docutils 22898 + jinja2 22899 + pygments 22900 + sphinx_rtd_theme 22901 + alabaster 22902 + Babel 22903 + snowballstemmer 22904 + six 22905 + sqlalchemy 22906 + whoosh 22907 + imagesize 22904 22908 ]; 22905 - 22906 22909 meta = { 22907 22910 description = "A tool that makes it easy to create intelligent and beautiful documentation for Python projects"; 22908 22911 homepage = http://sphinx.pocoo.org/; 22909 22912 license = licenses.bsd3; 22910 - platforms = platforms.unix; 22913 + maintainers = with maintainers; [ nand0p ]; 22914 + platforms = platforms.all; 22911 22915 }; 22912 22916 }); 22913 22917