about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/version-management/bugseverywhere/default.nix
blob: 7d1de378f53d6f2424c7e899c7a1ca182732bff0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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";
    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 ];
    };
}