depot/third_party/nixpkgs/pkgs/development/python-modules/modestmaps/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

27 lines
512 B
Nix

{
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;
};
}