about summary refs log tree commit diff
path: root/pkgs/development/python-modules/result/default.nix
blob: 3f15c2ce4c1a7efe02ed4c5e34d64e5767ab463c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
}:

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

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

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace '"--flake8",' "" \
      --replace '"--tb=short",' "" \
      --replace '"--cov=result",' "" \
      --replace '"--cov=tests",' "" \
      --replace '"--cov-report=term",' "" \
      --replace '"--cov-report=xml",' ""
  '';

  nativeCheckInputs = [
    pytestCheckHook
  ];

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

  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 = [];
  };
}