1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 pytestCheckHook,
6}:
7
8buildPythonPackage rec {
9 pname = "callee";
10 version = "0.3.1";
11 format = "setuptools";
12
13 src = fetchFromGitHub {
14 owner = "Xion";
15 repo = "callee";
16 tag = version;
17 hash = "sha256-dsXMY3bW/70CmTfCuy5KjxPa+NLCzxzWv5e1aV2NEWE=";
18 };
19
20 pythonImportsCheck = [ "callee" ];
21
22 doCheck = false; # missing dependency
23
24 nativeCheckInputs = [
25 # taipan missing, unmaintained, not python3.10 compatible
26 pytestCheckHook
27 ];
28
29 meta = with lib; {
30 description = "Argument matchers for unittest.mock";
31 homepage = "https://github.com/Xion/callee";
32 license = licenses.bsd3;
33 maintainers = with maintainers; [ hexa ];
34 };
35}