mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 16:53:40 +00:00
python312Packages.kaleido Re-enable on Darwin (#339876)
This commit is contained in:
commit
2e4c65655f
@ -97,7 +97,9 @@ buildPythonPackage rec {
|
|||||||
#ln -s ${lato}/share/fonts/lato/* $out/${python.sitePackages}/kaleido/executable/xdg/fonts/truetype/lato/
|
#ln -s ${lato}/share/fonts/lato/* $out/${python.sitePackages}/kaleido/executable/xdg/fonts/truetype/lato/
|
||||||
'';
|
'';
|
||||||
|
|
||||||
passthru.tests.kaleido = callPackage ./tests.nix { };
|
passthru.tests = lib.optionalAttrs (!stdenv.isDarwin) {
|
||||||
|
kaleido = callPackage ./tests.nix { };
|
||||||
|
};
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Fast static image export for web-based visualization libraries with zero dependencies";
|
description = "Fast static image export for web-based visualization libraries with zero dependencies";
|
||||||
@ -112,6 +114,5 @@ buildPythonPackage rec {
|
|||||||
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; # Trust me, I'm not happy. But after literal hours of trying to reverse-engineer their build system and getting nowhere, I'll use the stupid binaries >:(
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; # Trust me, I'm not happy. But after literal hours of trying to reverse-engineer their build system and getting nowhere, I'll use the stupid binaries >:(
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
maintainers = with lib.maintainers; [ pandapip1 ];
|
maintainers = with lib.maintainers; [ pandapip1 ];
|
||||||
broken = stdenv.isDarwin; # Tests fail on darwin for some reason
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user