python3Packages.facedancer: 3.1.1 -> 3.1.2 (#489229)

This commit is contained in:
Nick Cao
2026-02-11 23:25:42 +00:00
committed by GitHub
@@ -2,23 +2,25 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pythonAtLeast,
pyusb,
pyserial,
prompt-toolkit,
libusb1,
hid-parser,
setuptools,
}:
buildPythonPackage rec {
pname = "facedancer";
version = "3.1.1";
version = "3.1.2";
pyproject = true;
src = fetchFromGitHub {
owner = "greatscottgadgets";
repo = "facedancer";
tag = version;
hash = "sha256-Qe8DPUKwlukPftc7SOZIcY/do/14UdS61WH0g5dFeMI=";
hash = "sha256-CJU+ltQ+bWBK5AGS2WMR5RMx4UblknrCAMZyIAG/1bQ=";
};
postPatch = ''
@@ -36,6 +38,7 @@ buildPythonPackage rec {
pyserial
prompt-toolkit
libusb1
hid-parser
];
pythonImportsCheck = [
@@ -51,5 +54,7 @@ buildPythonPackage rec {
mog
carlossless
];
# https://github.com/greatscottgadgets/facedancer/issues/172
broken = pythonAtLeast "3.14";
};
}