Skip to content

Commit 0b41293

Browse files
authored
python3Packages.semchunk: 3.2.1 -> 3.2.2 (#418006)
2 parents 9ab56f9 + 60d3651 commit 0b41293

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

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

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
{
22
lib,
33
buildPythonPackage,
4-
fetchPypi,
4+
fetchFromGitHub,
55
hatchling,
66
mpire,
77
tqdm,
88
}:
99

1010
buildPythonPackage rec {
1111
pname = "semchunk";
12-
version = "3.2.1";
12+
version = "3.2.2";
1313
pyproject = true;
1414

15-
src = fetchPypi {
16-
inherit pname version;
17-
hash = "sha256-6kWJMEf2PfG5L1UhRKIEc+zksASsPZLP6SYB/X0ygbA=";
15+
src = fetchFromGitHub {
16+
owner = "isaacus-dev";
17+
repo = "semchunk";
18+
tag = "v${version}";
19+
hash = "sha256-bZe5QOFYY0LUUhv2T8B5xuzpCQ0XHtgS3ef12ZhxKvw=";
1820
};
1921

2022
build-system = [
@@ -32,7 +34,8 @@ buildPythonPackage rec {
3234

3335
meta = {
3436
description = "A fast, lightweight and easy-to-use Python library for splitting text into semantically meaningful chunks";
35-
homepage = "https://pypi.org/project/semchunk/";
37+
changelog = "https://github.com/isaacus-dev/semchunk/releases/tag/v${version}";
38+
homepage = "https://github.com/isaacus-dev/semchunk";
3639
license = lib.licenses.mit;
3740
maintainers = with lib.maintainers; [ booxter ];
3841
};

0 commit comments

Comments
 (0)