mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 20:53:48 +00:00
47 lines
788 B
Nix
47 lines
788 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, poetry-core
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, click
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "kml2geojson";
|
|
version = "5.1.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mrcagney";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-iJEcXpvy+Y3MkxAF2Q1Tkcx8GxUVjeVzv6gl134zdiI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
click
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"kml2geojson"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Library to convert KML to GeoJSON";
|
|
homepage = "https://github.com/mrcagney/kml2geojson";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|