nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 41 lines 814 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 click, 6 setuptools, 7 six, 8}: 9 10buildPythonPackage rec { 11 pname = "geomet"; 12 version = "1.1.0"; 13 pyproject = true; 14 15 src = fetchFromGitHub { 16 owner = "geomet"; 17 repo = "geomet"; 18 tag = version; 19 hash = "sha256-YfI29925nffzRBMJb6Gm3muvlpwP3zSw2YJ2vWcf+Bo="; 20 }; 21 22 nativeBuildInputs = [ setuptools ]; 23 24 propagatedBuildInputs = [ 25 click 26 six 27 ]; 28 29 pythonImportsCheck = [ "geomet" ]; 30 31 meta = { 32 description = "Convert GeoJSON to WKT/WKB (Well-Known Text/Binary) and vice versa"; 33 mainProgram = "geomet"; 34 homepage = "https://github.com/geomet/geomet"; 35 changelog = "https://github.com/geomet/geomet/releases/tag/${version}"; 36 license = lib.licenses.asl20; 37 maintainers = with lib.maintainers; [ 38 ris 39 ]; 40 }; 41}