depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-xprocess/default.nix
Default email 0d9fc34957 Project import generated by Copybara.
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
2023-01-20 11:41:00 +01:00

48 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 ];
};
}