reno: 1.8.0 -> 2.3.2 (#26516)

thanks
This commit is contained in:
Guillaume Koenig 2017-06-13 21:50:46 +02:00 committed by Joachim Schiele
parent f03ee24754
commit 8a06af1163

View file

@ -1,12 +1,12 @@
{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication rec {
with pythonPackages; buildPythonApplication rec {
name = "reno-${version}";
version = "1.8.0";
version = "2.3.2";
src = fetchurl {
url = "mirror://pypi/r/reno/${name}.tar.gz";
sha256 = "1pqg0xzcilmyrrnpa87m11xwlvfc94a98s28z9cgddkhw27lg3ps";
sha256 = "018vl9fj706jjf07xdx8q6761s53mrihjn69yjq09gp0vmp1g7i4";
};
# Don't know how to make tests pass
@ -15,8 +15,8 @@ pythonPackages.buildPythonApplication rec {
# Nothing to strip (python files)
dontStrip = true;
propagatedBuildInputs = with pythonPackages; [ pbr six pyyaml ];
buildInputs = with pythonPackages; [ Babel ];
propagatedBuildInputs = [ pbr six pyyaml dulwich ];
buildInputs = [ Babel ];
meta = with stdenv.lib; {
description = "Release Notes Manager";