python3Packages.baycomp: modernize

This commit is contained in:
Harinn
2026-06-06 01:39:03 +07:00
parent 7bf9300991
commit 7b86aa479c
@@ -9,13 +9,15 @@
unittestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "baycomp";
version = "1.0.3";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-MrJa17FtWyUd259hEKMtezlTuYcJbaHSXvJ3k10l2uw=";
};
@@ -36,4 +38,4 @@ buildPythonPackage rec {
license = [ lib.licenses.mit ];
maintainers = [ lib.maintainers.lucasew ];
};
}
})