ce1c1e3093
With this patch I remove myself as a maintainer for all packages I currently maintain. This is due the fact that I will be basically off the grid from May 2018 until early 2019, as I will be on a trip through north america. I will revert this patch as soon as I'm back, as I plan to continue contributing to nixpkgs then. But as I cannot maintain anything during that time, I'd like to get this patch merged. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
35 lines
933 B
Nix
35 lines
933 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 = [ ];
|
|
};
|
|
}
|
|
|