My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/modestmaps/default.nix

26 lines
486 B

{ lib
, 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 lib; {
description = "A library for building interactive maps";
homepage = "http://modestmaps.com";
license = licenses.bsd3;
};
}