Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / outcome / default.nix
blob66597cb0671e08666062389c44f59fb428e4aab2
1 { lib, buildPythonPackage, fetchPypi, pythonOlder
2 , attrs
3 , pytest
4 }:
6 buildPythonPackage rec {
7   pname = "outcome";
8   version = "1.2.0";
9   disabled = pythonOlder "3.4";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-b4K9PeRdowPPH3ceyvoWM3UKNYQ2qLtg4Goc63RdJnI=";
14   };
16   nativeCheckInputs = [ pytest ];
17   propagatedBuildInputs = [ attrs ];
18   # Has a test dependency on trio, which depends on outcome.
19   doCheck = false;
21   meta = {
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 ];
26   };