diff options
| author | Fabian Affolter <mail@fabian-affolter.ch> | 2023-02-16 00:19:23 +0100 |
|---|---|---|
| committer | Fabian Affolter <mail@fabian-affolter.ch> | 2023-02-16 00:19:23 +0100 |
| commit | 2bcea97534f1ba061fe7a80fb956b846254778d5 (patch) | |
| tree | a3e6ad994f8c41bde4dda2d62c5eef74beaa1d3c | |
| parent | beam/fetchMixDeps: disable --only flag when mixEnv is empty (diff) | |
| download | nixpkgs-2bcea97534f1ba061fe7a80fb956b846254778d5.tar.gz | |
python310Packages.locationsharinglib: add changelog to meta
| -rw-r--r-- | pkgs/development/python-modules/locationsharinglib/default.nix | 9 |
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 ]; }; |
