Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 25 lines 549 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "simplekml"; 8 version = "1.3.5"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "17h48r1dsfz4g9xcxh1xq85h20hiz7qzzymc1gla96bj2wh4wyv5"; 13 }; 14 15 # no tests are defined in 1.3.5 16 doCheck = false; 17 pythonImportsCheck = [ "simplekml" ]; 18 19 meta = with lib; { 20 description = "Python package to generate KML"; 21 homepage = "https://simplekml.readthedocs.io/"; 22 license = licenses.lgpl3Plus; 23 maintainers = with maintainers; [ rvolosatovs ]; 24 }; 25}