python310Packages.locationsharinglib: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-02-16 00:19:23 +01:00
parent a7fb18c804
commit 2bcea97534

View File

@ -14,11 +14,13 @@
buildPythonPackage rec {
pname = "locationsharinglib";
version = "4.1.8";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-69NzKSWpuU0Riwlj6cFC4h/shc/83e1mpq++zxDqftY=";
hash = "sha256-69NzKSWpuU0Riwlj6cFC4h/shc/83e1mpq++zxDqftY=";
};
propagatedBuildInputs = [
@ -49,11 +51,14 @@ buildPythonPackage rec {
runHook postCheck
'';
pythonImportsCheck = [ "locationsharinglib" ];
pythonImportsCheck = [
"locationsharinglib"
];
meta = with lib; {
description = "Python package to retrieve coordinates from a Google account";
homepage = "https://locationsharinglib.readthedocs.io/";
changelog = "https://github.com/costastf/locationsharinglib/blob/${version}/HISTORY.rst";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};