Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 20 lines 533 B view raw
1{ lib , buildPythonPackage , fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "simplekml"; 5 version = "1.3.5"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "17h48r1dsfz4g9xcxh1xq85h20hiz7qzzymc1gla96bj2wh4wyv5"; 10 }; 11 12 doCheck = false; # no tests are defined in 1.3.5 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}