Skip to content

Commit e83d129

Browse files
authored
python313Packages.timezonefinder: 8.2.0 -> 8.2.1 (#478333)
2 parents 7b93240 + 79a20ab commit e83d129

File tree

1 file changed

+7
-7
lines changed
  • pkgs/development/python-modules/timezonefinder

1 file changed

+7
-7
lines changed

pkgs/development/python-modules/timezonefinder/default.nix

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
setuptools,
1414
}:
1515

16-
buildPythonPackage rec {
16+
buildPythonPackage (finalAttrs: {
1717
pname = "timezonefinder";
18-
version = "8.2.0";
18+
version = "8.2.1";
1919
pyproject = true;
2020

2121
src = fetchFromGitHub {
2222
owner = "jannikmi";
2323
repo = "timezonefinder";
24-
tag = version;
25-
hash = "sha256-VIC+cLRDSaXLEz1Vpu6opoU5D0Q1xWaVq4OqzRBTiDw=";
24+
tag = finalAttrs.version;
25+
hash = "sha256-OuNJ4C5/rQo8o7o8R39FvwqK7lS7IGGDjNaP2n3GTVU=";
2626
};
2727

2828
build-system = [ setuptools ];
@@ -45,7 +45,7 @@ buildPythonPackage rec {
4545
pydantic
4646
pytestCheckHook
4747
]
48-
++ lib.concatAttrValues optional-dependencies;
48+
++ lib.concatAttrValues finalAttrs.passthru.optional-dependencies;
4949

5050
pythonImportsCheck = [ "timezonefinder" ];
5151

@@ -67,9 +67,9 @@ buildPythonPackage rec {
6767
meta = {
6868
description = "Module for finding the timezone of any point on earth (coordinates) offline";
6969
homepage = "https://github.com/MrMinimal64/timezonefinder";
70-
changelog = "https://github.com/jannikmi/timezonefinder/blob/${src.tag}/CHANGELOG.rst";
70+
changelog = "https://github.com/jannikmi/timezonefinder/blob/${finalAttrs.src.tag}/CHANGELOG.rst";
7171
license = lib.licenses.mit;
7272
maintainers = with lib.maintainers; [ fab ];
7373
mainProgram = "timezonefinder";
7474
};
75-
}
75+
})

0 commit comments

Comments
 (0)