summary refs log tree commit diff
path: root/pkgs/development/python-modules/sphinxcontrib-serializinghtml
diff options
context:
space:
mode:
authorMarkus S. Wamser <github-dev@mail2013.wamser.eu>2019-10-22 00:40:12 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2019-10-27 15:29:10 +0100
commitcc595c2c219d86b8410e39c39d74b39e10423da0 (patch)
tree79fd71d0033339b47893e4ad8012e9d703e477a4 /pkgs/development/python-modules/sphinxcontrib-serializinghtml
parenta3746ffc8d1bb52164ab602745ce87aafd00de13 (diff)
downloadnixpkgs-cc595c2c219d86b8410e39c39d74b39e10423da0.tar
nixpkgs-cc595c2c219d86b8410e39c39d74b39e10423da0.tar.gz
nixpkgs-cc595c2c219d86b8410e39c39d74b39e10423da0.tar.bz2
nixpkgs-cc595c2c219d86b8410e39c39d74b39e10423da0.tar.lz
nixpkgs-cc595c2c219d86b8410e39c39d74b39e10423da0.tar.xz
nixpkgs-cc595c2c219d86b8410e39c39d74b39e10423da0.tar.zst
nixpkgs-cc595c2c219d86b8410e39c39d74b39e10423da0.zip
sphinxcontrib-serializinghtml: init at 1.1.3
build dep of sphinx 2.2.0
Diffstat (limited to 'pkgs/development/python-modules/sphinxcontrib-serializinghtml')
-rw-r--r--pkgs/development/python-modules/sphinxcontrib-serializinghtml/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/sphinxcontrib-serializinghtml/default.nix b/pkgs/development/python-modules/sphinxcontrib-serializinghtml/default.nix
new file mode 100644
index 00000000000..76fba6e1b3a
--- /dev/null
+++ b/pkgs/development/python-modules/sphinxcontrib-serializinghtml/default.nix
@@ -0,0 +1,25 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "sphinxcontrib-serializinghtml";
+  version = "1.1.3";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "c0efb33f8052c04fd7a26c0a07f1678e8512e0faec19f4aa8f2473a8b81d5227";
+  };
+
+
+  # Check is disabled due to circular dependency of sphinx
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    description = "sphinxcontrib-serializinghtml is a sphinx extension which outputs \"serialized\" HTML files (json and pickle).";
+    homepage = http://sphinx-doc.org/;
+    license = licenses.bsd0;
+  };
+
+}