python312Packages.pytest-socket: 0.6.0 -> 0.7.0 (#291185)

Diff: https://github.com/miketheman/pytest-socket/compare/refs/tags/0.6.0...0.7.0
This commit is contained in:
Fabian Affolter
2024-03-12 04:30:05 +01:00
committed by Martin Weinelt
parent edc28f27bd
commit 889ca73247
@@ -9,16 +9,16 @@
buildPythonPackage rec {
pname = "pytest-socket";
version = "0.6.0";
format = "pyproject";
version = "0.7.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "miketheman";
repo = pname;
repo = "pytest-socket";
rev = "refs/tags/${version}";
hash = "sha256-RPHpqknjpuAMXYg4nFOtLp8CXh10/w0RuO/bseTBN5o=";
hash = "sha256-19YF3q85maCVdVg2HOOPbN45RNjBf6kiFAhLut8B2tQ=";
};
nativeBuildInputs = [
@@ -39,6 +39,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Pytest Plugin to disable socket calls during tests";
homepage = "https://github.com/miketheman/pytest-socket";
changelog = "https://github.com/miketheman/pytest-socket/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ ];
};