pythonPackages.munch: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-16 18:02:36 -04:00
committed by Frederik Rietdijk
parent 67988e545c
commit 9f6909e77e
2 changed files with 23 additions and 30 deletions

View File

@@ -0,0 +1,21 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "munch";
version = "2.0.4";
src = fetchPypi {
inherit pname version;
sha256 = "1420683a94f3a2ffc77935ddd28aa9ccb540dd02b75e02ed7ea863db437ab8b2";
};
meta = with stdenv.lib; {
description = "A dot-accessible dictionary (a la JavaScript objects)";
license = licenses.mit;
homepage = https://github.com/Infinidat/munch;
};
}