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