summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2015-06-27 17:00:55 +0200
committerMatthias Beyer <mail@beyermatthias.de>2015-06-29 17:55:33 +0200
commit5344e4db4d1d47dc0c406d12e366afc7fdf3c325 (patch)
treeef98865dc2ec53b0846d53a05a02a983fe1ea573
parentce10f31e0e218de4b75becd588ea61a4ab44a710 (diff)
downloadnixlib-5344e4db4d1d47dc0c406d12e366afc7fdf3c325.tar
nixlib-5344e4db4d1d47dc0c406d12e366afc7fdf3c325.tar.gz
nixlib-5344e4db4d1d47dc0c406d12e366afc7fdf3c325.tar.bz2
nixlib-5344e4db4d1d47dc0c406d12e366afc7fdf3c325.tar.lz
nixlib-5344e4db4d1d47dc0c406d12e366afc7fdf3c325.tar.xz
nixlib-5344e4db4d1d47dc0c406d12e366afc7fdf3c325.tar.zst
nixlib-5344e4db4d1d47dc0c406d12e366afc7fdf3c325.zip
klaus: init at 0.4.9
-rw-r--r--pkgs/top-level/python-packages.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index a2423e8073be..362b0623569b 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -6652,6 +6652,27 @@ let
     };
   };
 
+  klaus = buildPythonPackage rec {
+    version = "0.4.9";
+    name = "klaus-${version}";
+
+    src = pkgs.fetchurl {
+      url = "https://github.com/jonashaag/klaus/archive/${version}.tar.gz";
+      sha256 = "0qcbv3shz530mn53pdc68fx38ylz72033xsrz77ffi0cks32az2w";
+    };
+
+    propagatedBuildInputs = with self;
+      [ humanize httpauth dulwich pygments flask ];
+
+    meta = {
+      description = "The first Git web viewer that Just Works";
+      homepage    = "https://github.com/jonashaag/klaus";
+      #license     = licenses.mit; # I'm not sure about the license
+      maintainers = with maintainers; [ matthiasbeyer ];
+      platforms   = platforms.linux; # Can only test linux
+    };
+  };
+
   kombu = buildPythonPackage rec {
     name = "kombu-${version}";
     version = "3.0.24";