linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / minimock / default.nix
blobfaa836b71d7b7003136f5b842d1ed8c2123eac9e
1 { lib
2 , buildPythonPackage
3 , fetchurl
4 , nose
5 }:
7 buildPythonPackage rec {
8   version = "1.2.8";
9   pname = "minimock";
11   src = fetchurl {
12     url = "https://bitbucket.org/jab/minimock/get/${version}.zip";
13     sha256 = "c88fa8a7120623f23990a7f086a9657f6ced09025a55e3be8649a30b4945441a";
14   };
16   checkInputs = [ nose ];
18   checkPhase = ''
19     ./test
20   '';
22   meta = with lib; {
23     description = "A minimalistic mocking library for python";
24     homepage = "https://pypi.python.org/pypi/MiniMock";
25     license = licenses.mit;
26   };