python3Packages.bottleneck: modernize

This commit is contained in:
Harinn
2026-06-06 09:21:17 +07:00
parent 76f4d9eabd
commit dd6067b1f2
@@ -9,13 +9,15 @@
python,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "bottleneck";
version = "1.6.0";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-Ao1G7ksCWtmrTXmSQROBb4JfYrF7h8nh0NjOFEpKDjE=";
};
@@ -41,4 +43,4 @@ buildPythonPackage rec {
license = lib.licenses.bsd2;
maintainers = [ ];
};
}
})