summary refs log blame commit diff
path: root/pkgs/development/python-modules/munch/default.nix
blob: f6ca7c1d690553058e6e34b9f37c4aaa02c77b56 (plain) (tree)
1
2
3
4
5
6
7
8
9
     

                    
     
     



                        
                    


                          
                                                                                

    
                                      



                       
                    

                                                                          
                                                    


    
{ lib
, buildPythonPackage
, fetchPypi
, six
, pbr
}:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "2d735f6f24d4dba3417fa448cae40c6e896ec1fdab6cdb5e6510999758a4dbd2";
  };

  propagatedBuildInputs = [ six pbr ];

  # No tests in archive
  doCheck = false;

  meta = with lib; {
    description = "A dot-accessible dictionary (a la JavaScript objects)";
    license = licenses.mit;
    homepage = "https://github.com/Infinidat/munch";
  };

}