1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

python311Packages.proxy-py: unbreak on Darwin and aarch64-linux

This commit is contained in:
Malo Bourgon 2024-06-05 10:46:41 -07:00
parent 587ef56ca5
commit 2cb7c68f1c

View file

@ -1,6 +1,5 @@
{
lib,
stdenv,
bash,
buildPythonPackage,
fetchFromGitHub,
@ -89,6 +88,5 @@ buildPythonPackage rec {
changelog = "https://github.com/abhinavsingh/proxy.py/releases/tag/v${version}";
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ fab ];
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
};
}