From b71767195c5c44ac5012ab184f47f1e2bd99f4c9 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 4 Nov 2018 11:35:06 +0100 Subject: [PATCH] python: munch: 2.0.4 -> 2.3.2 --- pkgs/development/python-modules/munch/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/munch/default.nix b/pkgs/development/python-modules/munch/default.nix index 490ff9033ed..f4ecc2ff306 100644 --- a/pkgs/development/python-modules/munch/default.nix +++ b/pkgs/development/python-modules/munch/default.nix @@ -1,17 +1,23 @@ { stdenv , buildPythonPackage , fetchPypi +, six }: buildPythonPackage rec { pname = "munch"; - version = "2.0.4"; + version = "2.3.2"; src = fetchPypi { inherit pname version; - sha256 = "1420683a94f3a2ffc77935ddd28aa9ccb540dd02b75e02ed7ea863db437ab8b2"; + sha256 = "6ae3d26b837feacf732fb8aa5b842130da1daf221f5af9f9d4b2a0a6414b0d51"; }; + propagatedBuildInputs = [ six ]; + + # No tests in archive + doCheck = false; + meta = with stdenv.lib; { description = "A dot-accessible dictionary (a la JavaScript objects)"; license = licenses.mit;