Unverified Commit d199caf2 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

python3Packages.pepit: 0.3.2 -> 0.4.0 (#442083)

parents 6a5f3477 5ee81fc0
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -13,16 +13,21 @@

buildPythonPackage rec {
  pname = "pepit";
  version = "0.3.2";
  version = "0.4.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "PerformanceEstimation";
    repo = "PEPit";
    rev = version;
    hash = "sha256-Gdymdfi0Iv9KXBNSbAEWGYIQ4k5EONnbyWs+99L5D/A=";
    tag = version;
    hash = "sha256-6HF/BkDFUvui7CaVfOeJUQhl3QLLyE7aabDWcZ4tgXc=";
  };

  postPatch = ''
    substituteInPlace setup.py \
      --replace-fail "{{VERSION_PLACEHOLDER}}" "${version}"
  '';

  build-system = [
    setuptools
  ];