aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/geojson/default.nix
blob: b762434fb65afc3da2fa2597a23b051ed722ec5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildPythonPackage, fetchPypi, glibcLocales }:

buildPythonPackage rec {
  pname = "geojson";
  version = "2.5.0";

  format = "wheel";

  src = fetchPypi {
    inherit pname version format;
    sha256 = "1filqm050ixy53kdv81bd4n80vjvfapnmzizy7jg8a6pilv17gfc";
  };

  LC_ALL = "en_US.UTF-8";
  checkInputs = [ glibcLocales ];

  meta = {
    homepage = "https://github.com/frewsxcv/python-geojson";
    description = "Python bindings and utilities for GeoJSON";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ oxzi ];
  };
}