ae3ec83ee8
This commit was automatically generated using update-python-libraries.
38 lines
706 B
Nix
38 lines
706 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pytestCheckHook,
|
|
poetry-core,
|
|
teamcity-messages,
|
|
testtools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flexmock";
|
|
version = "0.13.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-aCnXoNf3Rtswh9qP2mL5JOUt9+zkBRwvWa1YbPWteXc=";
|
|
};
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
teamcity-messages
|
|
testtools
|
|
];
|
|
|
|
pythonImportsCheck = [ "flexmock" ];
|
|
|
|
meta = {
|
|
description = "Testing library that makes it easy to create mocks,stubs and fakes";
|
|
homepage = "https://flexmock.readthedocs.org";
|
|
license = lib.licenses.bsdOriginal;
|
|
maintainers = [ ];
|
|
};
|
|
}
|