12 buildPythonPackage rec {
13 pname = "betamax-matchers";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
21 repo = "betamax_matchers";
22 rev = "refs/tags/${version}";
23 hash = "sha256-BV9DOfZLDAZIr2E75l988QxFWWvazBL9VttxGFIez1M=";
26 build-system = [ setuptools ];
33 nativeCheckInputs = [ pytestCheckHook ];
35 pythonImportsCheck = [ "betamax_matchers" ];
38 description = "A group of experimental matchers for Betamax";
39 homepage = "https://github.com/sigmavirus24/betamax_matchers";
40 changelog = "https://github.com/betamaxpy/betamax_matchers/blob/${version}/HISTORY.rst";
41 license = licenses.asl20;
42 maintainers = with maintainers; [ pSub ];