python3Packages.bundlewrap: 4.17.2 -> 4.18.0

Changelog: https://github.com/bundlewrap/bundlewrap/releases/tag/4.18.0
This commit is contained in:
Markus S. Wamser 2024-04-02 10:55:19 +02:00
parent 656a024f91
commit 410b2b81b7
1 changed files with 3 additions and 3 deletions

View File

@ -18,16 +18,16 @@
buildPythonPackage rec {
pname = "bundlewrap";
version = "4.17.2";
version = "4.18.0";
format = "setuptools";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "bundlewrap";
repo = "bundlewrap";
rev = "refs/tags/${version}";
hash = "sha256-0yg8+OflTF3pNYz2TPNUW8ubTZjrEgtihV/21PpJUlM=";
hash = "sha256-7jBFeJem+0vZot+BknKmCxozmoHCBCAZqDbfQQG3/Vw=";
};
nativeBuildInputs = [ setuptools ];