Loading pkgs/development/python-modules/greatfet/default.nix +37 −14 Original line number Diff line number Diff line { 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
pkgs/development/python-modules/greatfet/default.nix +37 −14 Original line number Diff line number Diff line { 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 ]; }; }