summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-02-16 00:19:23 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2023-02-16 00:19:23 +0100
commit2bcea97534f1ba061fe7a80fb956b846254778d5 (patch)
treea3e6ad994f8c41bde4dda2d62c5eef74beaa1d3c
parentbeam/fetchMixDeps: disable --only flag when mixEnv is empty (diff)
downloadnixpkgs-2bcea97534f1ba061fe7a80fb956b846254778d5.tar.gz
python310Packages.locationsharinglib: add changelog to meta
-rw-r--r--pkgs/development/python-modules/locationsharinglib/default.nix9
1 files 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 ];
};