Merge pull request #331055 from msanft/greatfet/fix

python312Packages.greatfet: add missing dependencies
This commit is contained in:
Robert Schütz 2024-07-30 07:04:53 -07:00 committed by GitHub
commit 2144bab1b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,46 +1,69 @@
{
lib,
fetchFromGitHub,
buildPythonPackage,
isPy3k,
cmsis-svd,
fetchFromGitHub,
future,
pyusb,
ipython,
lib,
prompt-toolkit,
pyfwup,
pygreat,
pythonOlder,
pyusb,
setuptools,
tabulate,
tqdm,
}:
buildPythonPackage rec {
pname = "greatfet";
version = "2024.0.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "greatscottgadgets";
repo = "greatfet";
rev = "refs/tags/v${version}";
sha256 = "sha256-AKpaJZJTzMY3IQXLvVnLWh3IHeGp759z6tvaBl28BHQ=";
hash = "sha256-AKpaJZJTzMY3IQXLvVnLWh3IHeGp759z6tvaBl28BHQ=";
};
disabled = !isPy3k;
sourceRoot = "${src.name}/host";
propagatedBuildInputs = [
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail ', "setuptools-git-versioning<2"' "" \
--replace-fail 'dynamic = ["version"]' 'version = "${version}"'
'';
build-system = [ setuptools ];
dependencies = [
cmsis-svd
future
pyusb
ipython
prompt-toolkit
pyfwup
pygreat
pyusb
tabulate
tqdm
];
# Tests seem to require devices (or simulators) which are
# not available in the build sandbox.
doCheck = false;
preBuild = ''
cd host
echo "$version" > ../VERSION
'';
meta = {
description = "Hardware hacking with the greatfet";
homepage = "https://greatscottgadgets.com/greatfet";
license = lib.licenses.bsd3;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ mog ];
mainProgram = "gf";
maintainers = with lib.maintainers; [
mog
msanft
];
};
}