pythonPackages.apycula: 0.29 -> 0.31

This commit is contained in:
rowanG077
2026-04-05 16:51:51 +00:00
committed by Gaetan Lepage
parent eae07e1ee2
commit d66416d299
@@ -1,24 +1,35 @@
{
lib,
buildPythonPackage,
crc,
fetchPypi,
# build-system
setuptools-scm,
# dependencies
fastcrc,
msgspec,
numpy,
}:
buildPythonPackage (finalAttrs: {
pname = "apycula";
version = "0.29";
version = "0.31";
pyproject = true;
# The Pypi archive contains necessary files generated with proprietary tools.
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-awhGSmGQDQ0Pi+4y9KoR1Yw6UZjM/CTxAV0jdfen6Qw=";
hash = "sha256-77pr4HbS2adFeEI3Q3KzcCfJMi4UomOtKnuGAxobxF0=";
};
build-system = [ setuptools-scm ];
dependencies = [ crc ];
dependencies = [
fastcrc
msgspec
numpy
];
# Tests require a physical FPGA
doCheck = false;