depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-mock/2.nix
Default email ce641f4048 Project import generated by Copybara.
GitOrigin-RevId: bc5d68306b40b8522ffb69ba6cff91898c2fbbff
2021-12-06 17:07:01 +01:00

39 lines
717 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, pytest
, mock
, setuptools-scm
}:
buildPythonPackage rec {
pname = "pytest-mock";
version = "2.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "b35eb281e93aafed138db25c8772b95d3756108b601947f89af503f8c629413f";
};
propagatedBuildInputs = lib.optional (!isPy3k) mock;
nativeBuildInputs = [
setuptools-scm
];
checkInputs = [
pytest
];
checkPhase = ''
pytest
'';
meta = with lib; {
description = "Thin-wrapper around the mock package for easier use with py.test.";
homepage = "https://github.com/pytest-dev/pytest-mock";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}