move fix into nixos

This commit is contained in:
陈浩南 2024-10-20 19:11:19 +08:00
parent 3597f58f63
commit 4e0a1a48fd
2 changed files with 10 additions and 3 deletions

View File

@ -990,11 +990,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1729391201,
"narHash": "sha256-yN9tCNh3Yc8VeXq45YWY8d5KJzgIoj1TSqVxg4/Hdo4=",
"lastModified": 1729422138,
"narHash": "sha256-+A2CvM6yfzpVMzllq6x8a4upAWuWA8E7/wIHZVSXA8I=",
"owner": "CHN-beta",
"repo": "nixpkgs",
"rev": "fa1c84ec7037fd12ff45dfa3471425ac67b71370",
"rev": "8b52318898041c2dedfe825c556162045c1bb4b7",
"type": "github"
},
"original": {

View File

@ -118,6 +118,13 @@ inputs:
xdg-desktop-portal = prev.xdg-desktop-portal.overrideAttrs (prev:
{ doCheck = false; nativeBuildInputs = prev.nativeBuildInputs ++ prev.nativeCheckInputs; });
gsl = prev.gsl.overrideAttrs { doCheck = false; };
pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [(final: prev:
{
numcodecs = prev.numcodecs.overridePythonAttrs { doCheck = false; };
zarr = prev.zarr.overridePythonAttrs (prev:
{ disabledTests = prev.disabledTests or [] ++ [ "test_encode_decode_array_dtype_shape_v3" ]; });
})];
nodejs = prev.nodejs.overrideAttrs { doCheck = false; };
}
)
// (