ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / munch / default.nix
blobf6ca7c1d690553058e6e34b9f37c4aaa02c77b56
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , six
5 , pbr
6 }:
8 buildPythonPackage rec {
9   pname = "munch";
10   version = "2.5.0";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "2d735f6f24d4dba3417fa448cae40c6e896ec1fdab6cdb5e6510999758a4dbd2";
15   };
17   propagatedBuildInputs = [ six pbr ];
19   # No tests in archive
20   doCheck = false;
22   meta = with lib; {
23     description = "A dot-accessible dictionary (a la JavaScript objects)";
24     license = licenses.mit;
25     homepage = "https://github.com/Infinidat/munch";
26   };