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