Skip to content

Commit

Permalink
Merge pull request #305153 from emattiza/update/result-0-16-1
Browse files Browse the repository at this point in the history
python3Packages.result: 0.7.0 -> 0.16.1
  • Loading branch information
pbsds authored Apr 21, 2024
2 parents e8664fc + a59ae7b commit 62f7c1f
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions pkgs/development/python-modules/result/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,20 @@
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pytest-asyncio
, nix-update-script
}:

buildPythonPackage rec {
pname = "result";
version = "0.7.0";
version = "0.16.1";
format = "setuptools";

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

postPatch = ''
Expand All @@ -28,19 +30,16 @@ buildPythonPackage rec {

nativeCheckInputs = [
pytestCheckHook
pytest-asyncio
];

disabledTestPaths = [
#TODO: figure out the failure "match o:" Invalid Syntax
"tests/test_pattern_matching.py"
];

passthru.updateScript = nix-update-script {};
pythonImportsCheck = [ "result" ];

meta = with lib; {
description = "A simple Result type for Python 3 inspired by Rust, fully type annotated";
homepage = "https://github.com/rustedpy/result";
license = licenses.mit;
maintainers = [];
maintainers = with lib.maintainers; [ emattiza ];
};
}

0 comments on commit 62f7c1f

Please sign in to comment.