python3Packages.array-api-strict: refactor

- remove meta with lib (https://github.com/NixOS/nixpkgs/issues/208242)
- use with lib.maintainers (https://github.com/NixOS/nixpkgs/issues/331085)
- remove unnecessary trivial nix-update-script for Python packages
This commit is contained in:
Eric Berquist
2024-08-22 09:42:32 -04:00
parent 6d204f819e
commit 8525a69076
@@ -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 ];
};
}