Commit d66416d2 authored by rowanG077's avatar rowanG077 Committed by Gaetan Lepage
Browse files

pythonPackages.apycula: 0.29 -> 0.31

parent eae07e1e
Loading
Loading
Loading
Loading
+15 −4
Original line number Diff line number Diff line
{
  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;