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








                        
                    



                          
                                                                                










                                                            
{ stdenv
, buildPythonPackage
, fetchPypi
, pillow
, isPy27
}:

buildPythonPackage rec {
  pname = "ModestMaps";
  version = "1.4.7";
  disabled = !isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "698442a170f02923f8ea55f18526b56c17178162e44304f896a8a5fd65ab4457";
  };

  propagatedBuildInputs = [ pillow ];

  meta = with stdenv.lib; {
    description = "A library for building interactive maps";
    homepage = http://modestmaps.com;
    license = stdenv.lib.licenses.bsd3;
  };

}