depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-factoryboy/default.nix
Default email bba55970ba Project import generated by Copybara.
GitOrigin-RevId: 3d1a7716d7f1fccbd7d30ab3b2ed3db831f43bde
2021-04-05 17:23:46 +02:00

47 lines
905 B
Nix

{ lib
, buildPythonPackage
, factory_boy
, fetchFromGitHub
, inflection
, mock
, pytest
, pytestcache
, pytestCheckHook
, pytestcov
}:
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
];
checkInputs = [
mock
pytestCheckHook
pytestcache
pytestcov
];
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;
};
}