Merge pull request #232817 from nessdoor/nixpkgs/mip

python3Packages.mip: mark as broken on AArch64
This commit is contained in:
Stanisław Pitucha 2023-05-20 21:44:17 +10:00 committed by GitHub
commit 2ab106dda3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib
{ lib, stdenv
, buildPythonPackage
, cffi
, dos2unix
@ -73,6 +73,7 @@ buildPythonPackage rec {
downloadPage = "https://github.com/coin-or/python-mip/releases";
changelog = "https://github.com/coin-or/python-mip/releases/tag/${version}";
license = licenses.epl20;
broken = stdenv.isAarch64;
maintainers = with maintainers; [ nessdoor ];
};
}