1 { lib, buildPythonPackage, fetchPypi, pythonOlder
6 buildPythonPackage rec {
9 disabled = pythonOlder "3.4";
12 inherit pname version;
13 hash = "sha256-b4K9PeRdowPPH3ceyvoWM3UKNYQ2qLtg4Goc63RdJnI=";
16 nativeCheckInputs = [ pytest ];
17 propagatedBuildInputs = [ attrs ];
18 # Has a test dependency on trio, which depends on outcome.
22 description = "Capture the outcome of Python function calls.";
23 homepage = "https://github.com/python-trio/outcome";
24 license = with lib.licenses; [ mit asl20 ];
25 maintainers = with lib.maintainers; [ catern ];