python3Packages.simplekml: update meta

This commit is contained in:
Fabian Affolter 2021-02-27 10:48:47 +01:00
parent 870dbb751f
commit bd91d4fb48

View file

@ -1,4 +1,7 @@
{ lib , buildPythonPackage , fetchPypi }:
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "simplekml";
@ -9,11 +12,13 @@ buildPythonPackage rec {
sha256 = "17h48r1dsfz4g9xcxh1xq85h20hiz7qzzymc1gla96bj2wh4wyv5";
};
doCheck = false; # no tests are defined in 1.3.5
# no tests are defined in 1.3.5
doCheck = false;
pythonImportsCheck = [ "simplekml" ];
meta = with lib; {
description = "Generate KML with as little effort as possible";
homepage = "https://readthedocs.org/projects/simplekml/";
description = "Python package to generate KML";
homepage = "https://simplekml.readthedocs.io/";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ rvolosatovs ];
};