mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
48 lines
913 B
Nix
48 lines
913 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, factory_boy
|
|
, fetchFromGitHub
|
|
, inflection
|
|
, mock
|
|
, pytest
|
|
, pytestcache
|
|
, pytestCheckHook
|
|
, pytest-cov
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytest-factoryboy";
|
|
version = "2.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pytest-dev";
|
|
repo = "pytest-factoryboy";
|
|
rev = version;
|
|
sha256 = "0v6b4ly0p8nknpnp3f4dbslfsifzzjx2vv27rfylx04kzdhg4m9p";
|
|
};
|
|
|
|
buildInputs = [ pytest ];
|
|
|
|
propagatedBuildInputs = [
|
|
factory_boy
|
|
inflection
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
pytestCheckHook
|
|
pytestcache
|
|
pytest-cov
|
|
];
|
|
|
|
pytestFlagsArray = [ "--ignore=docs" ];
|
|
pythonImportsCheck = [ "pytest_factoryboy" ];
|
|
|
|
meta = with lib; {
|
|
description = "Integration of factory_boy into the pytest runner";
|
|
homepage = "https://pytest-factoryboy.readthedocs.io/en/latest/";
|
|
maintainers = with maintainers; [ winpat ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|