1{ lib, buildPythonPackage, fetchPypi, glibcLocales }:
2
3buildPythonPackage rec {
4 pname = "geojson";
5 version = "2.4.0";
6
7 format = "wheel";
8
9 src = fetchPypi {
10 inherit pname version format;
11 sha256 = "0r9pc8hgnc5hf5rq98vinbrncn08v4kgzdfmfs14rfypvacsmfpj";
12 };
13
14 LC_ALL = "en_US.UTF-8";
15 checkInputs = [ glibcLocales ];
16
17 meta = {
18 homepage = https://github.com/frewsxcv/python-geojson;
19 description = "Python bindings and utilities for GeoJSON";
20 license = lib.licenses.bsd3;
21 maintainers = with lib.maintainers; [ geistesk ];
22 };
23}