From 2bcea97534f1ba061fe7a80fb956b846254778d5 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 16 Feb 2023 00:19:23 +0100 Subject: [PATCH] python310Packages.locationsharinglib: add changelog to meta --- .../python-modules/locationsharinglib/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/locationsharinglib/default.nix b/pkgs/development/python-modules/locationsharinglib/default.nix index 01c07c6fecc5..a06101d83757 100644 --- a/pkgs/development/python-modules/locationsharinglib/default.nix +++ b/pkgs/development/python-modules/locationsharinglib/default.nix @@ -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 ]; };