2018-11-26 01:00:25 +01:00
|
|
|
{ lib , buildPythonPackage , fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "simplekml";
|
2020-04-07 13:31:27 +02:00
|
|
|
version = "1.3.5";
|
2018-11-26 01:00:25 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-04-07 13:31:27 +02:00
|
|
|
sha256 = "17h48r1dsfz4g9xcxh1xq85h20hiz7qzzymc1gla96bj2wh4wyv5";
|
2018-11-26 01:00:25 +01:00
|
|
|
};
|
|
|
|
|
2020-04-07 13:31:27 +02:00
|
|
|
doCheck = false; # no tests are defined in 1.3.5
|
2018-11-26 01:00:25 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Generate KML with as little effort as possible";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://readthedocs.org/projects/simplekml/";
|
2018-11-26 01:00:25 +01:00
|
|
|
license = licenses.lgpl3Plus;
|
|
|
|
maintainers = with maintainers; [ rvolosatovs ];
|
|
|
|
};
|
|
|
|
}
|