blob: 3b0a7b27845f26c9b319ab79e060330045f19bad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "simplekml";
version = "1.3.6";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "cda687be2754395fcab664e908ebf589facd41e8436d233d2be37a69efb1c536";
};
# no tests are defined in 1.3.5
doCheck = false;
pythonImportsCheck = [ "simplekml" ];
meta = {
description = "Python package to generate KML";
homepage = "https://simplekml.readthedocs.io/";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ rvolosatovs ];
};
}
|