aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/version-management/bugseverywhere/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/version-management/bugseverywhere/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/version-management/bugseverywhere/default.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/nixpkgs/pkgs/applications/version-management/bugseverywhere/default.nix b/nixpkgs/pkgs/applications/version-management/bugseverywhere/default.nix
deleted file mode 100644
index 7d1de378f53..00000000000
--- a/nixpkgs/pkgs/applications/version-management/bugseverywhere/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ 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";
- pname = "bugseverywhere";
-
- src = fetchurl {
- url =
- "mirror://pypi/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 ];
- };
-}
-