mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-02 10:14:09 +00:00
python3Packages.geojson: 2.5.0 -> 3.0.1
https://github.com/jazzband/geojson/blob/3.0.1/CHANGELOG.rst
This commit is contained in:
parent
f9861694d2
commit
e63354a730
@ -1,21 +1,33 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, glibcLocales }:
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, glibcLocales
|
||||
, unittestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "geojson";
|
||||
version = "2.5.0";
|
||||
version = "3.0.1";
|
||||
format = "setuptools";
|
||||
|
||||
format = "wheel";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version format;
|
||||
sha256 = "1filqm050ixy53kdv81bd4n80vjvfapnmzizy7jg8a6pilv17gfc";
|
||||
src = fetchFromGitHub {
|
||||
owner = "jazzband";
|
||||
repo = "geojson";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-VlP/odzRH6Eg0BMZPBQkbHL/O2cIwWTKJcL5SfZoUWQ=";
|
||||
};
|
||||
|
||||
LC_ALL = "en_US.UTF-8";
|
||||
nativeCheckInputs = [ glibcLocales ];
|
||||
pythonImportsCheck = [
|
||||
"geojson"
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
unittestCheckHook
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/frewsxcv/python-geojson";
|
||||
homepage = "https://github.com/jazzband/geojson";
|
||||
changelog = "https://github.com/jazzband/geojson/blob/${version}/CHANGELOG.rst";
|
||||
description = "Python bindings and utilities for GeoJSON";
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = with lib.maintainers; [ oxzi ];
|
||||
|
Loading…
Reference in New Issue
Block a user