Unverified Commit c02f9093 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

python3Packages.pytest-recording: 0.13.2 -> 0.13.4 (#405340)

parents d3346731 eaebf83d
Loading
Loading
Loading
Loading
+10 −9
Original line number Diff line number Diff line
@@ -16,26 +16,27 @@

buildPythonPackage rec {
  pname = "pytest-recording";
  version = "0.13.2";
  format = "pyproject";
  version = "0.13.4";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "kiwicom";
    repo = "pytest-recording";
    tag = "v${version}";
    hash = "sha256-C6uNp3knKKY0AX7fQYU85N82L6kyyO4HcExTz1bBtpE=";
    hash = "sha256-S++MnI0GgpQxS6kFkt05kcE4JMW7jyFjJ3o7DhfYoVA=";
  };

  build-system = [ hatchling ];

  buildInputs = [
    hatchling
    pytest
  ];

  propagatedBuildInputs = [ vcrpy ];
  dependencies = [ vcrpy ];

  __darwinAllowLocalNetworking = true;

  checkInputs = [
  nativeCheckInputs = [
    pytestCheckHook
    pytest-httpbin
    pytest-mock
@@ -53,10 +54,10 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "pytest_recording" ];

  meta = with lib; {
  meta = {
    description = "Pytest plugin that allows you recording of network interactions via VCR.py";
    homepage = "https://github.com/kiwicom/pytest-recording";
    license = licenses.mit;
    maintainers = with maintainers; [ jbgosselin ];
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ jbgosselin ];
  };
}