mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
reno: init at 1.8.0
This commit is contained in:
parent
fa4167c0a1
commit
dd04af4fcc
@ -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>";
|
||||
|
27
pkgs/development/tools/reno/default.nix
Normal file
27
pkgs/development/tools/reno/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user