about summary refs log tree commit diff
path: root/pkgs/development/python-modules/simplekml/default.nix
blob: be149e7edea4ee113f40f43438a3c97ec809616b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib , buildPythonPackage , fetchPypi }:

buildPythonPackage rec {
  pname = "simplekml";
  version = "1.3.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "08l24gfql83yjcdqb51nnnvckbnfb7bl89am4q9zr0fslrbcn3vf";
  };

  doCheck = false; # no tests are defined in 1.3.3

  meta = with lib; {
    description = "Generate KML with as little effort as possible";
    homepage =  https://readthedocs.org/projects/simplekml/;
    license = licenses.lgpl3Plus;
    maintainers = with maintainers; [ rvolosatovs ];
  };
}