av-98: mark as broken

This commit is contained in:
Ali Rizvi
2024-10-16 20:45:21 -04:00
committed by Emery Hemingway
parent 008eaa4d56
commit a5262ae936

View File

@@ -1,6 +1,9 @@
{ lib, python3Packages, fetchgit }:
python3Packages.buildPythonApplication rec {
{
lib,
python3Packages,
fetchgit,
}:
python3Packages.buildPythonApplication {
pname = "av-98";
version = "1.0.2dev";
@@ -10,7 +13,10 @@ python3Packages.buildPythonApplication rec {
sha256 = "09iskh33hl5aaif763j1fmbz7yvf0yqsxycfd41scj7vbwdsbxl0";
};
propagatedBuildInputs = with python3Packages; [ ansiwrap cryptography ];
propagatedBuildInputs = with python3Packages; [
ansiwrap
cryptography
];
# No tests are available
doCheck = false;
@@ -22,5 +28,7 @@ python3Packages.buildPythonApplication rec {
mainProgram = "av98";
license = licenses.bsd2;
maintainers = with maintainers; [ ehmry ];
broken = true;
};
}