mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
Merge pull request #331055 from msanft/greatfet/fix
python312Packages.greatfet: add missing dependencies
This commit is contained in:
commit
2144bab1b4
@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user