Unverified Commit 67c8a598 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

python312Packages.python-calamine: add missing dependency libiconv (#342563)

parents 513193ba e1dbddf2
Loading
Loading
Loading
Loading
+14 −6
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  cargo,
  fetchFromGitHub,
  rustPlatform,

  # buildInputs
  libiconv,

  # build-system
  cargo,
  poetry-core,
  pytestCheckHook,
  pythonOlder,
  rustc,

  # dependencies
  packaging,
  rustPlatform,

  # tests
  pytestCheckHook,
}:

buildPythonPackage rec {
@@ -16,8 +24,6 @@ buildPythonPackage rec {
  version = "0.2.3";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "dimastbk";
    repo = "python-calamine";
@@ -36,6 +42,8 @@ buildPythonPackage rec {
    ln -s ${./Cargo.lock} Cargo.lock
  '';

  buildInputs = [ libiconv ];

  build-system = [
    cargo
    poetry-core