Unverified Commit 3893c065 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #316909 from emattiza/update/pythonPackages/result-0.17.0

python3Packages.result: 0.16.1 -> 0.17.0
parents 3ca8ba2a 52ec0675
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
@@ -5,18 +5,24 @@
  pytestCheckHook,
  pytest-asyncio,
  nix-update-script,
  setuptools,
  wheel,
}:

buildPythonPackage rec {
  pname = "result";
  version = "0.16.1";
  format = "setuptools";
  version = "0.17.0";
  pyproject = true;
  build-system = [
    setuptools
    wheel
  ];

  src = fetchFromGitHub {
    owner = "rustedpy";
    repo = "result";
    rev = "v${version}";
    hash = "sha256-7BvFIQbl4Udd9GTpbMrAqP0P1BGn/C1CHQ3QUCEMXPs=";
    hash = "sha256-o+7qKxGQCeMUnsmEReggvf+XwQWFHRCYArYk3DxCa50=";
  };

  postPatch = ''