Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 543 B view raw
1{ lib , buildPythonPackage , fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "simplekml"; 5 version = "1.3.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "30c121368ce1d73405721730bf766721e580cae6fbb7424884c734c89ec62ad7"; 10 }; 11 12 doCheck = false; # no tests are defined in 1.3.1 13 14 meta = with lib; { 15 description = "Generate KML with as little effort as possible"; 16 homepage = https://readthedocs.org/projects/simplekml/; 17 license = licenses.lgpl3Plus; 18 maintainers = with maintainers; [ rvolosatovs ]; 19 }; 20}