My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/simplekml/default.nix

25 lines
561 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "simplekml";
version = "1.3.6";
src = fetchPypi {
inherit pname version;
sha256 = "cda687be2754395fcab664e908ebf589facd41e8436d233d2be37a69efb1c536";
};
# no tests are defined in 1.3.5
doCheck = false;
pythonImportsCheck = [ "simplekml" ];
meta = with lib; {
description = "Python package to generate KML";
homepage = "https://simplekml.readthedocs.io/";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ rvolosatovs ];
};
}