summary refs log tree commit diff
path: root/pkgs/development/python-modules/munch/default.nix
blob: 490ff9033ed1e3638357a8eacc8c27582557e164 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
  };

}