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 { buildPythonPackage rec {
pname = "simplekml"; pname = "simplekml";
@ -9,11 +12,13 @@ buildPythonPackage rec {
sha256 = "17h48r1dsfz4g9xcxh1xq85h20hiz7qzzymc1gla96bj2wh4wyv5"; 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; { meta = with lib; {
description = "Generate KML with as little effort as possible"; description = "Python package to generate KML";
homepage = "https://readthedocs.org/projects/simplekml/"; homepage = "https://simplekml.readthedocs.io/";
license = licenses.lgpl3Plus; license = licenses.lgpl3Plus;
maintainers = with maintainers; [ rvolosatovs ]; maintainers = with maintainers; [ rvolosatovs ];
}; };