about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/geomet/default.nix
blob: a4df450098dfc561df131eebb8fe46a53ba28e63 (plain) (blame)
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
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, click
, six
}:

buildPythonPackage rec {
  pname = "geomet";
  version = "0.2.1";

  # pypi tarball doesn't include tests
  src = fetchFromGitHub {
    owner = "geomet";
    repo = "geomet";
    rev = version;
    sha256 = "0fdi26glsmrsyqk86rnsfcqw79svn2b0ikdv89pq98ihrpwhn85y";
  };

  patches = [
    (fetchpatch {
      name = "python-3.8-support.patch";
      url = "https://github.com/geomet/geomet/commit/dc4cb4a856d3ad814b57b4b7487d86d9e0f0fad4.patch";
      sha256 = "1f1cdfqyp3z01jdjvax77219l3gc75glywqrisqpd2k0m0g7fwh3";
    })
  ];

  propagatedBuildInputs = [ click six ];

  meta = with lib; {
    homepage = "https://github.com/geomet/geomet";
    license = licenses.asl20;
    description = "Convert GeoJSON to WKT/WKB (Well-Known Text/Binary), and vice versa.";
    maintainers = with maintainers; [ turion ris ];
  };
}