Merge pull request #216552 from fabaff/locationsharinglib-bump

python310Packages.locationsharinglib: add changelog to meta

authored by davidak and committed by GitHub e3924e5e dbe3030d

+7 -2
+7 -2
pkgs/development/python-modules/locationsharinglib/default.nix
··· 14 14 buildPythonPackage rec { 15 15 pname = "locationsharinglib"; 16 16 version = "4.1.8"; 17 + format = "setuptools"; 18 + 17 19 disabled = pythonOlder "3.7"; 18 20 19 21 src = fetchPypi { 20 22 inherit pname version; 21 - sha256 = "sha256-69NzKSWpuU0Riwlj6cFC4h/shc/83e1mpq++zxDqftY="; 23 + hash = "sha256-69NzKSWpuU0Riwlj6cFC4h/shc/83e1mpq++zxDqftY="; 22 24 }; 23 25 24 26 propagatedBuildInputs = [ ··· 49 51 runHook postCheck 50 52 ''; 51 53 52 - pythonImportsCheck = [ "locationsharinglib" ]; 54 + pythonImportsCheck = [ 55 + "locationsharinglib" 56 + ]; 53 57 54 58 meta = with lib; { 55 59 description = "Python package to retrieve coordinates from a Google account"; 56 60 homepage = "https://locationsharinglib.readthedocs.io/"; 61 + changelog = "https://github.com/costastf/locationsharinglib/blob/${version}/HISTORY.rst"; 57 62 license = licenses.mit; 58 63 maintainers = with maintainers; [ fab ]; 59 64 };