konfig: 0.9 -> 1.1

This commit is contained in:
Nadrieril 2017-08-07 22:32:54 +01:00
parent e619ace733
commit 1844dfc491

View file

@ -12014,7 +12014,7 @@ in {
konfig = buildPythonPackage rec {
name = "konfig-${version}";
version = "0.9";
version = "1.1";
# konfig unconditionaly depend on configparser, even if it is part of
# the standard library in python 3.2 or above.
@ -12023,10 +12023,10 @@ in {
src = pkgs.fetchgit {
url = https://github.com/mozilla-services/konfig.git;
rev = "refs/tags/${version}";
sha256 = "1kc5iy61ckbmf65d9ssyqiyb25lnxjvr7c2vcsdl9wx4n6fhwzx3";
sha256 = "1h780fbrv275dcik4cs3rincza805z6q726b48r4a0qmh5d8160c";
};
propagatedBuildInputs = with self; [ configparser argparse ];
propagatedBuildInputs = with self; [ configparser argparse six ];
meta = {
description = "Yet Another Config Parser";