10 buildPythonPackage rec {
12 version = "1.3.0.post0";
15 inherit pname version;
16 hash = "sha256-nc8C5l8pcbgAR7N3Ro5yomjhXArzzxI45v8U9/kRQ7g=";
19 nativeBuildInputs = [ setuptools ];
21 nativeCheckInputs = [ pytest ];
22 propagatedBuildInputs = [ attrs ];
23 # Has a test dependency on trio, which depends on outcome.
27 description = "Capture the outcome of Python function calls";
28 homepage = "https://github.com/python-trio/outcome";
29 license = with lib.licenses; [
33 maintainers = with lib.maintainers; [ catern ];