depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-runner/default.nix

41 lines
682 B
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchPypi,
setuptools-scm,
pytest,
}:
buildPythonPackage rec {
pname = "pytest-runner";
version = "6.0.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-cNRzlYWnAI83v0kzwBP9sye4h4paafy7MxbIiILw9Js=";
};
postPatch = ''
rm pytest.ini
'';
nativeBuildInputs = [
setuptools-scm
pytest
];
checkPhase = ''
py.test tests
'';
# Fixture not found
doCheck = false;
meta = with lib; {
description = "Invoke py.test as distutils command with dependency resolution";
homepage = "https://github.com/pytest-dev/pytest-runner";
license = licenses.mit;
};
}