python312Packages.flexmock: 0.11.3 -> 0.12.0

This commit is contained in:
Martin Weinelt
2024-03-27 18:35:06 +01:00
parent d72f272463
commit b984244adb
@@ -3,32 +3,33 @@
, fetchPypi
, pytestCheckHook
, pythonOlder
, poetry-core
, teamcity-messages
, testtools
}:
buildPythonPackage rec {
pname = "flexmock";
version = "0.11.3";
format = "setuptools";
version = "0.12.0";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-sf419qXzJUe1zTGhXAYNmrhj3Aiv8BjNc9x40bZR7dQ=";
hash = "sha256-YdBvPRRCuBW3qoWh9HvoONBW9fXRTO/teuv7A0c9FKs=";
};
build-system = [
poetry-core
];
nativeCheckInputs = [
pytestCheckHook
teamcity-messages
testtools
];
disabledTests = [
"test_failed_test_case"
];
pythonImportsCheck = [
"flexmock"
];