ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / callee / default.nix
blob1cf63455c24baea108ebd8690cac27bc7f1dd926
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "callee";
9   version = "0.3.1";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "Xion";
14     repo = pname;
15     rev = "refs/tags/${version}";
16     hash = "sha256-dsXMY3bW/70CmTfCuy5KjxPa+NLCzxzWv5e1aV2NEWE=";
17   };
19   pythonImportsCheck = [
20     "callee"
21   ];
23   doCheck = false; # missing dependency
25   checkInputs = [
26     # taipan missing, unmaintained, not python3.10 compatible
27     pytestCheckHook
28   ];
30   meta = with lib; {
31     description = "Argument matchers for unittest.mock";
32     homepage = "https://github.com/Xion/callee";
33     license = licenses.bsd3;
34     maintainers = with maintainers; [ hexa ];
35   };