nixpkgs/pkgs/development/tools/reno/default.nix

28 lines
709 B
Nix
Raw Normal View History

2016-10-25 16:25:08 +00:00
{ stdenv, fetchurl, pythonPackages }:
2017-06-13 19:50:46 +00:00
with pythonPackages; buildPythonApplication rec {
2016-10-25 16:25:08 +00:00
name = "reno-${version}";
2017-06-13 19:50:46 +00:00
version = "2.3.2";
2016-10-25 16:25:08 +00:00
src = fetchurl {
url = "mirror://pypi/r/reno/${name}.tar.gz";
2017-06-13 19:50:46 +00:00
sha256 = "018vl9fj706jjf07xdx8q6761s53mrihjn69yjq09gp0vmp1g7i4";
2016-10-25 16:25:08 +00:00
};
# Don't know how to make tests pass
doCheck = false;
# Nothing to strip (python files)
dontStrip = true;
2017-06-13 19:50:46 +00:00
propagatedBuildInputs = [ pbr six pyyaml dulwich ];
buildInputs = [ Babel ];
2016-10-25 16:25:08 +00:00
meta = with stdenv.lib; {
description = "Release Notes Manager";
homepage = http://docs.openstack.org/developer/reno/;
license = licenses.asl20;
maintainers = with maintainers; [ guillaumekoenig ];
};
}