nur-packages

My NUR packages
git clone git://git.sikmir.ru/nur-packages
Log | Files | Refs | README | LICENSE

commit c1c7912df6afcb2c076b9235dd0ef637650e3295
parent 728ae3acc180295a0d293f4fc2557f195d11b5f4
Author: Nikolay Korotkiy <sikmir@disroot.org>
Date:   Thu, 25 May 2023 16:12:31 +0400

pytest-mp: 0.0.4 → 2019-03-11

Diffstat:
Mpkgs/development/python-modules/pytest-mp/default.nix | 9++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/pkgs/development/python-modules/pytest-mp/default.nix b/pkgs/development/python-modules/pytest-mp/default.nix @@ -2,17 +2,20 @@ python3Packages.buildPythonPackage rec { pname = "pytest-mp"; - version = "0.0.4"; + version = "2019-03-11"; src = fetchFromGitHub { owner = "ansible"; repo = "pytest-mp"; - rev = version; - hash = "sha256-+YttmCHFhUnKhLI8DFoI1juKN1YsxMi1vhf9KeJy+GM="; + rev = "49a8ff2ca9ef62d8c86854ab31d6b5d5d6cf3f28"; + hash = "sha256-KJEhMMQGrkLh5JJ6oGY0k2IZy+xobOF6dXP7Yc1CaQc="; }; postPatch = '' substituteInPlace setup.py --replace "'setuptools-markdown'" "" + + # https://github.com/ansible/pytest-mp/issues/8 + substituteInPlace pytest_mp/terminal.py --replace "reporter.writer" "reporter._tw" ''; nativeCheckInputs = with python3Packages; [ pytestCheckHook ];