mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
python.pkgs.flexmock: init at 0.10.2
This commit is contained in:
parent
0fdd47e509
commit
8864410439
26
pkgs/development/python-modules/flexmock/default.nix
Normal file
26
pkgs/development/python-modules/flexmock/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user