21 buildPythonPackage rec {
22 pname = "pytest-factoryboy";
26 src = fetchFromGitHub {
28 repo = "pytest-factoryboy";
30 sha256 = "sha256-GYqYwtbmMWVqImVPPBbZNRJJGcbksUPsIbi6QuPRMco=";
33 nativeBuildInputs = [ poetry-core ];
35 buildInputs = [ pytest ];
37 propagatedBuildInputs = [
43 pythonImportsCheck = [ "pytest_factoryboy" ];
45 nativeCheckInputs = [ pytestCheckHook ];
47 pytestFlagsArray = [ "--ignore=docs" ];
50 description = "Integration of factory_boy into the pytest runner";
51 homepage = "https://pytest-factoryboy.readthedocs.io/en/latest/";
52 maintainers = with maintainers; [ winpat ];
53 license = licenses.mit;