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