1{ lib, buildPythonPackage, fetchPypi, glibcLocales }: 2 3buildPythonPackage rec { 4 pname = "geojson"; 5 version = "2.5.0"; 6 7 format = "wheel"; 8 9 src = fetchPypi { 10 inherit pname version format; 11 sha256 = "1filqm050ixy53kdv81bd4n80vjvfapnmzizy7jg8a6pilv17gfc"; 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; [ oxzi ]; 22 }; 23}