about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/modestmaps/default.nix
blob: 180baaefce7786b9f00046c934378c8f8be7b2db (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
{ lib
, buildPythonPackage
, fetchPypi
, pillow
, isPy27
}:

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

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

  propagatedBuildInputs = [ pillow ];

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

}