python.pkgs.flexmock: init at 0.10.2

This commit is contained in:
Frederik Rietdijk 2018-11-24 14:32:43 +01:00
parent 0fdd47e509
commit 8864410439
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "flexmock";
version = "0.10.2";
src = fetchPypi {
inherit pname version;
sha256 = "fe95c8727f4db73dc8f2f7b4548bffe7992440a965fefd60da291abda5352c2b";
};
checkInputs = [ pytest ];
checkPhase = ''
py.test
'';
meta = with lib; {
description = "flexmock is a testing library for Python that makes it easy to create mocks,stubs and fakes.";
homepage = http://flexmock.readthedocs.org;
license = licenses.bsdOriginal;
};
}

View File

@ -1663,6 +1663,8 @@ in {
fedpkg = callPackage ../development/python-modules/fedpkg { };
flexmock = callPackage ../development/python-modules/flexmock { };
flit = callPackage ../development/python-modules/flit { };
flowlogs_reader = callPackage ../development/python-modules/flowlogs_reader { };