about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/geojson/default.nix
blob: 91b8d455cdeff66de1731f4f0b2cbecec5ba5e75 (plain) (blame)
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.4.1";

  format = "wheel";

  src = fetchPypi {
    inherit pname version format;
    sha256 = "12k4g993qqgrhq2mgy5k8rhm5a2s2hbn769rs5fwbc5lwv4bbgxj";
  };

  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 ];
  };
}