mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 13:43:22 +00:00
26 lines
561 B
Nix
26 lines
561 B
Nix
{ 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 ];
|
|
};
|
|
}
|