biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / betamax-matchers / default.nix
blobb1ac71b6cc211bb8141e883180ff31f8f7093829
2   lib,
3   betamax,
4   buildPythonPackage,
5   fetchFromGitHub,
6   pytestCheckHook,
7   pythonOlder,
8   requests-toolbelt,
9   setuptools,
12 buildPythonPackage rec {
13   pname = "betamax-matchers";
14   version = "0.4.0";
15   pyproject = true;
17   disabled = pythonOlder "3.7";
19   src = fetchFromGitHub {
20     owner = "betamaxpy";
21     repo = "betamax_matchers";
22     rev = "refs/tags/${version}";
23     hash = "sha256-BV9DOfZLDAZIr2E75l988QxFWWvazBL9VttxGFIez1M=";
24   };
26   build-system = [ setuptools ];
28   dependencies = [
29     betamax
30     requests-toolbelt
31   ];
33   nativeCheckInputs = [ pytestCheckHook ];
35   pythonImportsCheck = [ "betamax_matchers" ];
37   meta = with lib; {
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 ];
43   };