Skip to content

Commit b70eb89

Browse files
authored
[Backport release-25.05] python3Packages.aiotarfile: 0.5.1 -> 0.5.2 (#455330)
2 parents 9ef39ec + 0cbd15a commit b70eb89

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

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

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,28 @@
11
{
22
lib,
33
fetchFromGitHub,
4-
nix-update-script,
54
buildPythonPackage,
65
unittestCheckHook,
7-
pythonOlder,
86
cargo,
97
rustc,
108
rustPlatform,
119
}:
1210

1311
buildPythonPackage rec {
1412
pname = "aiotarfile";
15-
version = "0.5.1";
13+
version = "0.5.2";
1614
pyproject = true;
1715

18-
disabled = pythonOlder "3.8";
19-
2016
src = fetchFromGitHub {
2117
owner = "rhelmot";
2218
repo = "aiotarfile";
2319
tag = "v${version}";
24-
hash = "sha256-DslG+XxIYb04I3B7m0fmRmE3hFCczF039QhSVdHGPL8=";
20+
hash = "sha256-V88cvVw6ss7iiojhlqDd2frG/gCEH0YKTP0IpgeFASw=";
2521
};
2622

2723
cargoDeps = rustPlatform.fetchCargoVendor {
2824
inherit pname version src;
29-
hash = "sha256-e3NbFlBQu9QkGnIwqy2OmlQFVHjlfpMVRFWD2ADGGSc=";
25+
hash = "sha256-Yf6N615X9ZB+HDp3xehMc3kjKbdsSbIJrqARRXwCRDQ=";
3026
};
3127

3228
nativeBuildInputs = [
@@ -42,12 +38,10 @@ buildPythonPackage rec {
4238

4339
pythonImportsCheck = [ "aiotarfile" ];
4440

45-
passthru.updateScript = nix-update-script { };
46-
4741
meta = {
4842
description = "Stream-based, asynchronous tarball processing";
4943
homepage = "https://github.com/rhelmot/aiotarfile";
50-
changelog = "https://github.com/rhelmot/aiotarfile/commits/v{version}";
44+
changelog = "https://github.com/rhelmot/aiotarfile/commits/${src.tag}";
5145
license = lib.licenses.mit;
5246
maintainers = with lib.maintainers; [ nicoo ];
5347
};

0 commit comments

Comments
 (0)