1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-04 14:52:34 +03:00
nixpkgs/pkgs/development/python-modules/pytest-mockito/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
689 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytest
, mockito
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pytest-mockito";
version = "0.0.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "kaste";
repo = "pytest-mockito";
rev = version;
hash = "sha256-vY/i1YV1lo4mZvnxsXBOyaq31YTiF0BY6PTVwdVX10I=";
};
buildInputs = [
pytest
];
propagatedBuildInputs = [
mockito
];
checkInputs = [
pytestCheckHook
];
meta = {
description = "Base fixtures for mockito";
homepage = "https://github.com/kaste/pytest-mockito";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}