about summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2016-03-28 14:39:38 +0200
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2016-03-28 14:39:38 +0200
commit4c13595507c040b2bcb1bd20673b9f86434363a6 (patch)
tree63fb4b4d7172799fd945468448d9e50d786a2a52 /pkgs/applications/version-management
parented47bb1ca8a56a06b5ff27e35c115087520b9b7a (diff)
parent729c06910899b59309a620d66aff192cdad8690b (diff)
downloadnixlib-4c13595507c040b2bcb1bd20673b9f86434363a6.tar
nixlib-4c13595507c040b2bcb1bd20673b9f86434363a6.tar.gz
nixlib-4c13595507c040b2bcb1bd20673b9f86434363a6.tar.bz2
nixlib-4c13595507c040b2bcb1bd20673b9f86434363a6.tar.lz
nixlib-4c13595507c040b2bcb1bd20673b9f86434363a6.tar.xz
nixlib-4c13595507c040b2bcb1bd20673b9f86434363a6.tar.zst
nixlib-4c13595507c040b2bcb1bd20673b9f86434363a6.zip
Merge pull request #14093 from matthiasbeyer/add-be
bugseverywhere: init at 1.1.1
Diffstat (limited to 'pkgs/applications/version-management')
-rw-r--r--pkgs/applications/version-management/bugseverywhere/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/applications/version-management/bugseverywhere/default.nix b/pkgs/applications/version-management/bugseverywhere/default.nix
new file mode 100644
index 000000000000..f8081ade61f5
--- /dev/null
+++ b/pkgs/applications/version-management/bugseverywhere/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, pythonPackages, fetchurl }:
+
+#
+# Upstream stopped development of this package. If this package does not build
+# anymore, feel free to remove it by reverting the appropriate patch
+# (git log --grep bugseverywhere)
+#
+pythonPackages.buildPythonApplication rec {
+    version = "1.1.1";
+    name = "bugseverywhere-${version}";
+
+    src = fetchurl {
+      url =
+      "https://pypi.python.org/packages/source/b/bugs-everywhere/bugs-everywhere-${version}.tar.gz";
+      sha256 = "1ikm3ckwpimwcvx32vy7gh5gbp7q750j3327m17nvrj99g3daz2d";
+    };
+
+    # There are no tests in the repository.
+    doCheck = false;
+
+    buildInputs = with pythonPackages; [
+        jinja2
+        cherrypy
+    ];
+
+    meta = with stdenv.lib; {
+        description = "Bugtracker supporting distributed revision control";
+        homepage = "http://www.bugseverywhere.org/";
+        license = licenses.gpl2Plus;
+        platforms = platforms.all;
+        maintainers = [ maintainers.matthiasbeyer ];
+    };
+}
+