summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2018-02-27 10:59:18 +0100
committermakefu <github@syntax-fehler.de>2018-02-28 08:32:53 +0100
commitb4eee22b6f061611acd4571b25d1ec2ef37a1023 (patch)
tree7e6a6e4ff5b7d9e43673de5464958b2c533a48de /pkgs/development/python-modules
parent0b5af0399d14bf9382b415e280fd6226279ce517 (diff)
downloadnixlib-b4eee22b6f061611acd4571b25d1ec2ef37a1023.tar
nixlib-b4eee22b6f061611acd4571b25d1ec2ef37a1023.tar.gz
nixlib-b4eee22b6f061611acd4571b25d1ec2ef37a1023.tar.bz2
nixlib-b4eee22b6f061611acd4571b25d1ec2ef37a1023.tar.lz
nixlib-b4eee22b6f061611acd4571b25d1ec2ef37a1023.tar.xz
nixlib-b4eee22b6f061611acd4571b25d1ec2ef37a1023.tar.zst
nixlib-b4eee22b6f061611acd4571b25d1ec2ef37a1023.zip
pythonPackages.xstatic-pygments: move to python-modules
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/xstatic-pygments/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/xstatic-pygments/default.nix b/pkgs/development/python-modules/xstatic-pygments/default.nix
new file mode 100644
index 000000000000..8ec9b77860c2
--- /dev/null
+++ b/pkgs/development/python-modules/xstatic-pygments/default.nix
@@ -0,0 +1,25 @@
+{ buildPythonPackage
+, lib
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "XStatic-Pygments";
+  version = "1.6.0.1";
+
+  src = fetchPypi {
+    inherit version pname;
+    sha256 = "0fjqgg433wfdnswn7fad1g6k2x6mf24wfnay2j82j0fwgkdxrr7m";
+  };
+
+  # no tests implemented
+  doCheck = false;
+
+  meta = with lib;{
+    homepage = http://pygments.org;
+    description = "pygments packaged static files for python";
+    license = licenses.mit;
+    maintainers = with maintainers; [ makefu ];
+  };
+
+}