summary refs log tree commit diff
path: root/pkgs/development/python-modules/sphinxcontrib-websupport
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-08-25 19:34:14 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-08-25 19:36:20 +0200
commit7726a1ec25854e85aee988111fae83d767a5b179 (patch)
tree21b52eb7f35d81f2080fa113599f6e1aaa5d5d46 /pkgs/development/python-modules/sphinxcontrib-websupport
parent2923300a5fdf41ef4620f7f33355df7118920263 (diff)
downloadnixpkgs-7726a1ec25854e85aee988111fae83d767a5b179.tar
nixpkgs-7726a1ec25854e85aee988111fae83d767a5b179.tar.gz
nixpkgs-7726a1ec25854e85aee988111fae83d767a5b179.tar.bz2
nixpkgs-7726a1ec25854e85aee988111fae83d767a5b179.tar.lz
nixpkgs-7726a1ec25854e85aee988111fae83d767a5b179.tar.xz
nixpkgs-7726a1ec25854e85aee988111fae83d767a5b179.tar.zst
nixpkgs-7726a1ec25854e85aee988111fae83d767a5b179.zip
python.pkgs.sphinxcontrib-websupport: init at 1.0.1
Diffstat (limited to 'pkgs/development/python-modules/sphinxcontrib-websupport')
-rw-r--r--pkgs/development/python-modules/sphinxcontrib-websupport/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/sphinxcontrib-websupport/default.nix b/pkgs/development/python-modules/sphinxcontrib-websupport/default.nix
new file mode 100644
index 00000000000..fa308dc37bb
--- /dev/null
+++ b/pkgs/development/python-modules/sphinxcontrib-websupport/default.nix
@@ -0,0 +1,26 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, six
+}:
+
+buildPythonPackage rec {
+  pname = "sphinxcontrib-websupport";
+  version = "1.0.1";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "7a85961326aa3a400cd4ad3c816d70ed6f7c740acd7ce5d78cd0a67825072eb9";
+  };
+
+  propagatedBuildInputs = [ six ];
+
+  doCheck = false;
+
+  meta = {
+    description = "Sphinx API for Web Apps";
+    homepage = http://sphinx-doc.org/;
+    license = lib.licenses.bsd2;
+  };
+}
\ No newline at end of file