My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/minimock/default.nix

28 lines
530 B

{ lib
, buildPythonPackage
, fetchurl
, nose
}:
buildPythonPackage rec {
version = "1.2.8";
pname = "minimock";
src = fetchurl {
url = "https://bitbucket.org/jab/minimock/get/${version}.zip";
sha256 = "c88fa8a7120623f23990a7f086a9657f6ced09025a55e3be8649a30b4945441a";
};
checkInputs = [ nose ];
checkPhase = ''
./test
'';
meta = with lib; {
description = "A minimalistic mocking library for python";
homepage = "https://pypi.python.org/pypi/MiniMock";
license = licenses.mit;
};
}