blob: 62fb1077b347e8f5b130284311e7885d36d79f0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
poetry-core,
teamcity-messages,
testtools,
}:
buildPythonPackage rec {
pname = "flexmock";
version = "0.12.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Q1xmHDs1R3V165FQQooc/Xxiy5kqp4h1Z8M1euvJrKE=";
};
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 = [ ];
};
}
|