pius: migrate to pyproject; use finalAttrs, tag and hash (#530361)

This commit is contained in:
Peder Bergebakken Sundt
2026-06-10 22:38:32 +00:00
committed by GitHub
+8 -9
View File
@@ -6,20 +6,19 @@
perl,
}:
let
version = "3.0.0";
in
python3Packages.buildPythonApplication {
python3Packages.buildPythonApplication (finalAttrs: {
pname = "pius";
namePrefix = "";
inherit version;
format = "setuptools";
version = "3.0.0";
pyproject = true;
build-system = with python3Packages; [ setuptools ];
src = fetchFromGitHub {
owner = "jaymzh";
repo = "pius";
rev = "v${version}";
sha256 = "0l87dx7n6iwy8alxnhvval8h1kl4da6a59hsilbi65c6bpj4dh3y";
tag = "v${finalAttrs.version}";
hash = "sha256-fsBG5F2GFRMXjRqmooxqhM4AEVV7Q9upQp5HY09vB1E=";
};
patchPhase = ''
@@ -47,4 +46,4 @@ python3Packages.buildPythonApplication {
platforms = lib.platforms.gnu ++ lib.platforms.linux;
maintainers = [ ];
};
}
})