depot/third_party/nixpkgs/pkgs/development/tools/reno/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

27 lines
713 B
Nix

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