python3Packages.pytest-services: 2.2.1 -> 2.2.2

https://github.com/pytest-dev/pytest-services/blob/v2.2.2/CHANGES.rst

This commit was automatically generated using update-python-libraries.

Changed files
+4 -14
pkgs
development
python-modules
pytest-services
+4 -14
pkgs/development/python-modules/pytest-services/default.nix
···
lib,
buildPythonPackage,
fetchFromGitHub,
-
fetchpatch,
psutil,
pylibmc,
pytest,
···
buildPythonPackage rec {
pname = "pytest-services";
-
version = "2.2.1";
+
version = "2.2.2";
pyproject = true;
disabled = pythonOlder "3.7";
···
src = fetchFromGitHub {
owner = "pytest-dev";
repo = "pytest-services";
-
tag = version;
-
hash = "sha256-E/VcKcAb1ekypm5jP4lsSz1LYJTcTSed6i5OY5ihP30=";
+
tag = "v${version}";
+
hash = "sha256-kWgqb7+3/hZKUz7B3PnfxHZq6yU3JUeJ+mruqrMD/NE=";
};
-
patches = [
-
# Replace distutils.spawn.find_executable with shutil.which, https://github.com/pytest-dev/pytest-services/pull/46
-
(fetchpatch {
-
name = "replace-distutils.patch";
-
url = "https://github.com/pytest-dev/pytest-services/commit/e0e2a85434a2dcbcc0584299c5b2b751efe0b6db.patch";
-
hash = "sha256-hvr7EedfjfonHDn6v2slwUBqz1xQoF7Ez/kqAhZRXEc=";
-
})
-
];
-
nativeBuildInputs = [
setuptools-scm
toml
···
meta = with lib; {
description = "Services plugin for pytest testing framework";
homepage = "https://github.com/pytest-dev/pytest-services";
-
changelog = "https://github.com/pytest-dev/pytest-services/blob/${version}/CHANGES.rst";
+
changelog = "https://github.com/pytest-dev/pytest-services/blob/${src.tag}/CHANGES.rst";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};