python3Packages.result: 0.16.1 -> 0.17.0

This commit is contained in:
emattiza 2024-06-03 08:16:32 -05:00
parent fc6e6b8ffb
commit 52ec0675e7

View File

@ -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 = ''