Files
nixpkgs/pkgs/development/python-modules/apycula/default.nix
Martin Weinelt 1f87dee0f9 python3Packages.apycula: 0.16 -> 0.18
https://github.com/YosysHQ/apicula/releases/tag/0.18

This commit was automatically generated using update-python-libraries.
2025-04-03 23:12:02 +02:00

40 lines
791 B
Nix

{
lib,
buildPythonPackage,
crc,
fetchPypi,
pythonOlder,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "apycula";
version = "0.18";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit version;
pname = "Apycula";
hash = "sha256-nUaXnx4xFNH5wKZRaFXt0uLAgLm5/dTSKhiZQoSL8pg=";
};
build-system = [ setuptools-scm ];
dependencies = [ crc ];
# Tests require a physical FPGA
doCheck = false;
pythonImportsCheck = [ "apycula" ];
meta = with lib; {
description = "Open Source tools for Gowin FPGAs";
homepage = "https://github.com/YosysHQ/apicula";
changelog = "https://github.com/YosysHQ/apicula/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ newam ];
};
}