about summary refs log tree commit diff
path: root/pkgs/development/python-modules/wktutils/default.nix
blob: 23529f04a3568c8014d881ef26cdc65feb152efa (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
  lib,
  buildPythonPackage,
  dateparser,
  defusedxml,
  fetchFromGitHub,
  geomet,
  geopandas,
  kml2geojson,
  pyshp,
  pythonOlder,
  pyyaml,
  requests,
  setuptools-scm,
  shapely,
  scikit-learn,
}:

buildPythonPackage rec {
  pname = "wktutils";
  version = "2.0.0";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "asfadmin";
    repo = "Discovery-WKTUtils";
    rev = "refs/tags/v${version}";
    hash = "sha256-mB+joEZq/aFPcRqFAzPgwG26Wi7WiRCeQeFottk+4Ho=";
  };

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace-fail '"twine",' ""
  '';

  build-system = [ setuptools-scm ];

  dependencies = [
    dateparser
    defusedxml
    geomet
    geopandas
    kml2geojson
    pyshp
    pyyaml
    shapely
  ];

  passthru.optional-dependencies = {
    extras = [
      requests
      scikit-learn
    ];
  };

  # Module doesn't have tests
  doCheck = false;

  pythonImportsCheck = [ "WKTUtils" ];

  meta = with lib; {
    description = "Collection of tools for handling WKTs";
    homepage = "https://github.com/asfadmin/Discovery-WKTUtils";
    changelog = "https://github.com/asfadmin/Discovery-WKTUtils/blob/v${version}/CHANGELOG.md";
    license = licenses.bsd3;
    maintainers = with maintainers; [ fab ];
  };
}