nixpkgs/pkgs/development/python-modules/pytest-xprocess/default.nix

49 lines
845 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, psutil
, py
, pytest
, setuptools-scm
}:
buildPythonPackage rec {
pname = "pytest-xprocess";
version = "0.21.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-+UcL/PiE9ymetrgqQ9KYwxi45T7DFO5iTJh+DofBtEk=";
};
postPatch = ''
# Remove test QoL package from install_requires
substituteInPlace setup.py \
--replace "'pytest-cache', " ""
'';
nativeBuildInputs = [
setuptools-scm
];
buildInputs = [
pytest
];
propagatedBuildInputs = [
psutil
py
];
# There's no tests in repo
doCheck = false;
meta = with lib; {
description = "Pytest external process plugin";
homepage = "https://github.com/pytest-dev";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}