diff options
Diffstat (limited to 'pkgs/development/python-modules/flexmock/default.nix')
-rw-r--r-- | pkgs/development/python-modules/flexmock/default.nix | 31 |
1 files changed, 14 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/flexmock/default.nix b/pkgs/development/python-modules/flexmock/default.nix index 45b2981ba959..5088c3bcd605 100644 --- a/pkgs/development/python-modules/flexmock/default.nix +++ b/pkgs/development/python-modules/flexmock/default.nix @@ -1,28 +1,27 @@ -{ lib -, buildPythonPackage -, fetchPypi -, pytestCheckHook -, pythonOlder -, poetry-core -, teamcity-messages -, testtools +{ + lib, + buildPythonPackage, + fetchPypi, + pytestCheckHook, + pythonOlder, + poetry-core, + teamcity-messages, + testtools, }: buildPythonPackage rec { pname = "flexmock"; - version = "0.12.0"; + version = "0.12.1"; pyproject = true; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-YdBvPRRCuBW3qoWh9HvoONBW9fXRTO/teuv7A0c9FKs="; + hash = "sha256-ILaQr6T/jG8xVI2JbW1BzKH8kFCkz2KLll6kNOxUjuM="; }; - build-system = [ - poetry-core - ]; + build-system = [ poetry-core ]; nativeCheckInputs = [ pytestCheckHook @@ -30,14 +29,12 @@ buildPythonPackage rec { testtools ]; - pythonImportsCheck = [ - "flexmock" - ]; + pythonImportsCheck = [ "flexmock" ]; meta = with lib; { description = "Testing library that makes it easy to create mocks,stubs and fakes"; homepage = "https://flexmock.readthedocs.org"; license = licenses.bsdOriginal; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } |