Unverified Commit 18bfedc4 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

python3Packages.fickling: 0.1.4 -> 0.1.5, adopt (#466875)

parents feeed58c 25b7809f
Loading
Loading
Loading
Loading
+7 −11
Original line number Diff line number Diff line
{
  lib,
  astunparse,
  buildPythonPackage,
  distutils,
  fetchFromGitHub,
  flit-core,
  hatchling,
  numpy,
  pytestCheckHook,
  stdlib-list,
  torch,
  torchvision,
  stdlib-list,
}:

buildPythonPackage rec {
  pname = "fickling";
  version = "0.1.4";
  version = "0.1.5";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "trailofbits";
    repo = "fickling";
    tag = "v${version}";
    hash = "sha256-EgVtMYPwSVBlw1bmX3qEeUKvEY7Awv6DOB5tgSLG+xQ=";
    hash = "sha256-ExyjOTpIkDM2PmHxYUbe8xNhhQChqfUqTtsNR8Z7ZEk=";
  };

  build-system = [
    distutils
    flit-core
    hatchling
  ];

  dependencies = [
    astunparse
    stdlib-list
  ];

  pythonRelaxDeps = [ "stdlib_list" ];
  pythonRelaxDeps = [ "stdlib-list" ];

  optional-dependencies = {
    torch = [
@@ -59,6 +55,6 @@ buildPythonPackage rec {
    homepage = "https://github.com/trailofbits/fickling";
    changelog = "https://github.com/trailofbits/fickling/releases/tag/${src.tag}";
    license = lib.licenses.lgpl3Plus;
    maintainers = [ ];
    maintainers = with lib.maintainers; [ sarahec ];
  };
}