nixpkgs/pkgs/applications/version-management/bugseverywhere/default.nix
Matthias Beyer f1f4f38909 Revert "Remove maintainership"
I'm baaaaack!

This patch reverts my patch where I removed myself as maintainer because
of my traveling. I'm back now and I want to maintain these packages
again.

This reverts commit ce1c1e3093.
2019-02-20 19:57:34 +01:00

35 lines
959 B
Nix

{ 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 =
"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 ];
};
}