nixpkgs/pkgs/development/python-modules/polyline/default.nix
Fabian Affolter 6d93fcda5b python310Packages.polyline: modernize
- switch to pytestCheckHook
- add format and changelog
- disable on unsupported Python releases
- add pythonImportsCheck
2023-05-19 09:40:12 +02:00

52 lines
1.2 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "polyline";
version = "2.0.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "frederickjansen";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-e9ZDqcS3MaMlXi2a2JHI6NtRPqIV7rjsucGXEH6V8LA=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --cov=polyline --cov-report term-missing" ""
'';
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"polyline"
];
meta = with lib; {
description = "Python implementation of Google's Encoded Polyline Algorithm Format";
longDescription = ''
polyline is a Python implementation of Google's Encoded Polyline Algorithm Format. It is
essentially a port of https://github.com/mapbox/polyline.
'';
homepage = "https://github.com/frederickjansen/polyline";
changelog = "https://github.com/frederickjansen/polyline/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ ersin ];
};
}