about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/munch/default.nix
blob: f4ecc2ff3061a08dcaa0d9bfbf7b82b112f0d0b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv
, buildPythonPackage
, fetchPypi
, six
}:

buildPythonPackage rec {
  pname = "munch";
  version = "2.3.2";

  src = fetchPypi {
    inherit pname version;
    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;
    homepage = https://github.com/Infinidat/munch;
  };

}