about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMathnerd314 <mathnerd314.gph+hs@gmail.com>2021-03-31 16:58:36 -0600
committerFrederik Rietdijk <fridh@fridh.nl>2021-04-15 18:45:45 +0200
commit80e725f3dc9daff0b720b4cb7d7088cdc65e015d (patch)
tree02625645e13b70a1dcfa29cec3dceb5399234bed /pkgs
parent9c190d28df0612b8695570b218419441a6acf3ec (diff)
downloadnixlib-80e725f3dc9daff0b720b4cb7d7088cdc65e015d.tar
nixlib-80e725f3dc9daff0b720b4cb7d7088cdc65e015d.tar.gz
nixlib-80e725f3dc9daff0b720b4cb7d7088cdc65e015d.tar.bz2
nixlib-80e725f3dc9daff0b720b4cb7d7088cdc65e015d.tar.lz
nixlib-80e725f3dc9daff0b720b4cb7d7088cdc65e015d.tar.xz
nixlib-80e725f3dc9daff0b720b4cb7d7088cdc65e015d.tar.zst
nixlib-80e725f3dc9daff0b720b4cb7d7088cdc65e015d.zip
sphinx_rtd_theme: 0.4.3 -> 0.5.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/sphinx_rtd_theme/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/sphinx_rtd_theme/default.nix b/pkgs/development/python-modules/sphinx_rtd_theme/default.nix
index 3062f35669ed..06338ec118fb 100644
--- a/pkgs/development/python-modules/sphinx_rtd_theme/default.nix
+++ b/pkgs/development/python-modules/sphinx_rtd_theme/default.nix
@@ -12,12 +12,13 @@ buildPythonPackage rec {
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "eda689eda0c7301a80cf122dad28b1861e5605cbf455558f3775e1e8200e83a5";
+    sha256 = "19c31qhfiqbm6y7mamglrc2mc7l6n4lasb8jry01lc67l3nqk9pd";
   };
 
   propagatedBuildInputs = [ sphinx ];
 
   checkInputs = [ readthedocs-sphinx-ext pytest ];
+  CI=1; # Don't use NPM to fetch assets. Assets are included in sdist.
 
   checkPhase = ''
     py.test
@@ -25,8 +26,8 @@ buildPythonPackage rec {
 
   meta = with lib; {
     description = "ReadTheDocs.org theme for Sphinx";
-    homepage = "https://github.com/snide/sphinx_rtd_theme/";
-    license = licenses.bsd3;
+    homepage = "https://github.com/readthedocs/sphinx_rtd_theme";
+    license = licenses.mit;
     platforms = platforms.unix;
   };