python3Packages.array-api-strict: remove with lib for meta (#335446)

This commit is contained in:
Sandro 2024-08-28 11:57:41 +02:00 committed by GitHub
commit fe75bd4cb4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,7 +6,6 @@
numpy,
pytestCheckHook,
hypothesis,
nix-update-script,
}:
buildPythonPackage rec {
@ -37,13 +36,11 @@ buildPythonPackage rec {
"test_environment_variables"
];
passthru.updateScript = nix-update-script { };
meta = with lib; {
meta = {
homepage = "https://data-apis.org/array-api-strict";
changelog = "https://github.com/data-apis/array-api-strict/releases/tag/${version}";
description = "A strict, minimal implementation of the Python array API";
license = licenses.bsd3;
maintainers = [ maintainers.berquist ];
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ berquist ];
};
}