python3Packages.bnnumerizer: modernize

This commit is contained in:
Harinn
2026-06-06 08:52:06 +07:00
parent 4dbea5a634
commit 93e6226740
@@ -5,13 +5,15 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "bnnumerizer";
version = "0.0.2";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-Qd9v0Le1GqTsR3a2ZDzt6+5f0R4zXX1W1KIMCFFeXw0=";
};
@@ -28,4 +30,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
teams = [ lib.teams.tts ];
};
}
})