summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pytest-socket
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-01-02 01:01:32 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2022-01-02 01:01:32 +0100
commiteb9d92ccb682cd26c3d2017cebbb5deecae03460 (patch)
treec43cdd38cc8ed69bad82e6808c98735211cd1971 /pkgs/development/python-modules/pytest-socket
parent82ccdfbdb9dd231e14a0b0948a23e969b727bc43 (diff)
python3Packages.pytest-socket: 0.4.0 -> 0.5.0
Diffstat (limited to 'pkgs/development/python-modules/pytest-socket')
-rw-r--r--pkgs/development/python-modules/pytest-socket/default.nix26
1 files changed, 8 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/pytest-socket/default.nix b/pkgs/development/python-modules/pytest-socket/default.nix
index 0371b7cac5a4..1376d3e8412f 100644
--- a/pkgs/development/python-modules/pytest-socket/default.nix
+++ b/pkgs/development/python-modules/pytest-socket/default.nix
@@ -1,23 +1,24 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
-, fetchpatch
, poetry-core
, pytest
, pythonOlder
+, setuptoolsBuildHook
}:
buildPythonPackage rec {
pname = "pytest-socket";
- version = "0.4.0";
- disabled = pythonOlder "3.6";
+ version = "0.5.0";
format = "pyproject";
+ disabled = pythonOlder "3.7";
+
src = fetchFromGitHub {
owner = "miketheman";
repo = pname;
rev = version;
- sha256 = "sha256-cFYtJqZ/RjFbn9XlEy6ffxZ2djisajQAwjV/YR2f59Q=";
+ hash = "sha256-HdGkpIHFsoAG2+8UyL9jSb3Dm8bWkYzREdY3i15ls/Q=";
};
nativeBuildInputs = [
@@ -28,23 +29,12 @@ buildPythonPackage rec {
pytest
];
- checkInputs = [
- pytest
- ];
-
- patches = [
- # Switch to poetry-core, https://github.com/miketheman/pytest-socket/pull/74
- (fetchpatch {
- name = "switch-to-poetry-core.patch";
- url = "https://github.com/miketheman/pytest-socket/commit/32519170e656e731d24b81770a170333d3efa6a8.patch";
- sha256 = "19ksgx77rsa6ijcbml74alwc5052mdqr4rmvqhlzvfcvv3676ig2";
- })
- ];
-
# pytest-socket require network for majority of tests
doCheck = false;
- pythonImportsCheck = [ "pytest_socket" ];
+ pythonImportsCheck = [
+ "pytest_socket"
+ ];
meta = with lib; {
description = "Pytest Plugin to disable socket calls during tests";