summary refs log tree commit diff
path: root/pkgs/development/python-modules/alabaster
diff options
context:
space:
mode:
authorwisut hantanong <wizzup@gmail.com>2017-07-19 16:43:01 +0700
committerwisut hantanong <wizzup@gmail.com>2017-07-19 16:43:01 +0700
commit9b313484def34616a1d13cce9fa69e8ec6b96e2d (patch)
treecc392a3777d1f396160b121ccc5d939d8d2c11e1 /pkgs/development/python-modules/alabaster
parent5eea07391ea407b502dcd3b59c7c0f319c29b713 (diff)
downloadnixlib-9b313484def34616a1d13cce9fa69e8ec6b96e2d.tar
nixlib-9b313484def34616a1d13cce9fa69e8ec6b96e2d.tar.gz
nixlib-9b313484def34616a1d13cce9fa69e8ec6b96e2d.tar.bz2
nixlib-9b313484def34616a1d13cce9fa69e8ec6b96e2d.tar.lz
nixlib-9b313484def34616a1d13cce9fa69e8ec6b96e2d.tar.xz
nixlib-9b313484def34616a1d13cce9fa69e8ec6b96e2d.tar.zst
nixlib-9b313484def34616a1d13cce9fa69e8ec6b96e2d.zip
python.pkgs.alabaster : move to separate expression
Diffstat (limited to 'pkgs/development/python-modules/alabaster')
-rw-r--r--pkgs/development/python-modules/alabaster/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/alabaster/default.nix b/pkgs/development/python-modules/alabaster/default.nix
new file mode 100644
index 000000000000..69bcaa1fc06e
--- /dev/null
+++ b/pkgs/development/python-modules/alabaster/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, pygments }:
+
+buildPythonPackage rec {
+  pname = "alabaster";
+  version = "0.7.7";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "f416a84e0d0ddbc288f6b8f2c276d10b40ca1238562cd9ed5a751292ec647b71";
+  };
+
+  propagatedBuildInputs = [ pygments ];
+
+  # No tests included
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/bitprophet/alabaster;
+    description = "A Sphinx theme";
+    license = licenses.bsd3;
+  };
+}