forked from mirrors/nixpkgs
bugseverywhere: init at 1.1.1
This commit is contained in:
parent
daa03b0229
commit
729c069108
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
@ -87,6 +87,8 @@ in modules // {
|
|||
|
||||
blivet = callPackage ../development/python-modules/blivet { };
|
||||
|
||||
bugseverywhere = callPackage ../applications/version-management/bugseverywhere {};
|
||||
|
||||
dbus = callPackage ../development/python-modules/dbus {
|
||||
dbus = pkgs.dbus;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue