tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.podman: 5.3.0 -> 5.4.0.1
R. Ryantm
1 year ago
85bed319
ddac4156
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
podman
default.nix
+3
-3
pkgs/development/python-modules/podman/default.nix
···
15
15
16
16
buildPythonPackage rec {
17
17
pname = "podman";
18
18
-
version = "5.3.0";
18
18
+
version = "5.4.0.1";
19
19
pyproject = true;
20
20
21
21
disabled = pythonOlder "3.9";
···
24
24
owner = "containers";
25
25
repo = "podman-py";
26
26
tag = "v${version}";
27
27
-
hash = "sha256-YER+qTC5+eF3PWtDBPq2WNOm5RzqXy30+1JdPzwyfrk=";
27
27
+
hash = "sha256-6K6wBLCJCIAHbJQuY7JPnkmuq8OwrxCaSAHWeFDwH10=";
28
28
};
29
29
30
30
build-system = [ setuptools ];
···
67
67
meta = with lib; {
68
68
description = "Python bindings for Podman's RESTful API";
69
69
homepage = "https://github.com/containers/podman-py";
70
70
-
changelog = "https://github.com/containers/podman-py/releases/tag/v${version}";
70
70
+
changelog = "https://github.com/containers/podman-py/releases/tag/${src.tag}";
71
71
license = licenses.asl20;
72
72
maintainers = with maintainers; [ fab ];
73
73
};