nixpkgs/pkgs/development/python-modules/modestmaps/default.nix

27 lines
505 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, pillow
, isPy27
}:
buildPythonPackage rec {
pname = "ModestMaps";
2018-11-04 10:35:06 +00:00
version = "1.4.7";
disabled = !isPy27;
src = fetchPypi {
inherit pname version;
2018-11-04 10:35:06 +00:00
sha256 = "698442a170f02923f8ea55f18526b56c17178162e44304f896a8a5fd65ab4457";
};
propagatedBuildInputs = [ pillow ];
meta = with stdenv.lib; {
description = "A library for building interactive maps";
homepage = http://modestmaps.com;
license = stdenv.lib.licenses.bsd3;
};
}