python3Packages.volatile: modernize

This commit is contained in:
SkohTV
2026-05-25 11:20:19 -04:00
parent efc89f74cd
commit 5344c83c4e
@@ -6,7 +6,7 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "volatile";
version = "2.1.0";
pyproject = true;
@@ -14,7 +14,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "mbr";
repo = "volatile";
tag = version;
tag = finalAttrs.version;
hash = "sha256-TYUvr0bscM/FaPk9oiF4Ob7HdKa2HlbpEFmaPfh4ir0=";
};
@@ -30,4 +30,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})