Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 561 B view raw
1{ lib, buildPythonPackage, fetchPypi, glibcLocales }: 2 3buildPythonPackage rec { 4 pname = "geojson"; 5 version = "2.4.1"; 6 7 format = "wheel"; 8 9 src = fetchPypi { 10 inherit pname version format; 11 sha256 = "12k4g993qqgrhq2mgy5k8rhm5a2s2hbn769rs5fwbc5lwv4bbgxj"; 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}