nixpkgs/pkgs/development/python-modules/geojson/default.nix

24 lines
561 B
Nix
Raw Normal View History

2018-05-19 08:43:54 +00:00
{ lib, buildPythonPackage, fetchPypi, glibcLocales }:
buildPythonPackage rec {
pname = "geojson";
version = "2.4.1";
2018-07-12 07:13:12 +00:00
format = "wheel";
2018-05-19 08:43:54 +00:00
src = fetchPypi {
2018-07-12 07:13:12 +00:00
inherit pname version format;
sha256 = "12k4g993qqgrhq2mgy5k8rhm5a2s2hbn769rs5fwbc5lwv4bbgxj";
2018-05-19 08:43:54 +00:00
};
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; [ geistesk ];
};
}