13 buildPythonPackage rec {
14 pname = "pytest-factoryboy";
17 src = fetchFromGitHub {
19 repo = "pytest-factoryboy";
21 sha256 = "0v6b4ly0p8nknpnp3f4dbslfsifzzjx2vv27rfylx04kzdhg4m9p";
24 buildInputs = [ pytest ];
26 propagatedBuildInputs = [
38 pytestFlagsArray = [ "--ignore=docs" ];
39 pythonImportsCheck = [ "pytest_factoryboy" ];
42 description = "Integration of factory_boy into the pytest runner";
43 homepage = "https://pytest-factoryboy.readthedocs.io/en/latest/";
44 maintainers = with maintainers; [ winpat ];
45 license = licenses.mit;