reno: init at 1.8.0

This commit is contained in:
Guillaume Koenig 2016-10-25 18:25:08 +02:00 committed by Guillaume Koenig
parent fa4167c0a1
commit dd04af4fcc
3 changed files with 30 additions and 0 deletions

View file

@ -179,6 +179,7 @@
grahamc = "Graham Christensen <graham@grahamc.com>";
gridaphobe = "Eric Seidel <eric@seidel.io>";
guibert = "David Guibert <david.guibert@gmail.com>";
guillaumekoenig = "Guillaume Koenig <guillaume.edward.koenig@gmail.com>";
hakuch = "Jesse Haber-Kucharsky <hakuch@gmail.com>";
havvy = "Ryan Scheel <ryan.havvy@gmail.com>";
hbunke = "Hendrik Bunke <bunke.hendrik@gmail.com>";

View file

@ -0,0 +1,27 @@
{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication rec {
name = "reno-${version}";
version = "1.8.0";
src = fetchurl {
url = "mirror://pypi/r/reno/${name}.tar.gz";
sha256 = "1pqg0xzcilmyrrnpa87m11xwlvfc94a98s28z9cgddkhw27lg3ps";
};
# Don't know how to make tests pass
doCheck = false;
# Nothing to strip (python files)
dontStrip = true;
propagatedBuildInputs = with pythonPackages; [ pbr six pyyaml ];
buildInputs = with pythonPackages; [ Babel ];
meta = with stdenv.lib; {
description = "Release Notes Manager";
homepage = http://docs.openstack.org/developer/reno/;
license = licenses.asl20;
maintainers = with maintainers; [ guillaumekoenig ];
};
}

View file

@ -6288,6 +6288,8 @@ in
redo = callPackage ../development/tools/build-managers/redo { };
reno = callPackage ../development/tools/reno { };
re2c = callPackage ../development/tools/parsing/re2c { };
remake = callPackage ../development/tools/build-managers/remake { };