16 buildPythonPackage rec {
17 pname = "pytest-recording";
21 src = fetchFromGitHub {
23 repo = "pytest-recording";
25 hash = "sha256-SCHdzii6GYVWVY7MW/IW6CNZMuu5h/jXEj49P0jvhoE=";
33 propagatedBuildInputs = [
37 __darwinAllowLocalNetworking = true;
47 "test_block_network_with_allowed_hosts"
48 ] ++ lib.optionals stdenv.isDarwin [
49 # Missing socket.AF_NETLINK
57 pythonImportsCheck = [
62 description = "A pytest plugin that allows you recording of network interactions via VCR.py";
63 homepage = "https://github.com/kiwicom/pytest-recording";
64 license = licenses.mit;
65 maintainers = with maintainers; [ jbgosselin ];