nixpkgs/pkgs/development/python-modules/pytest-mock/default.nix

26 lines
684 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, isPy3k, pytest, mock, setuptools_scm }:
buildPythonPackage rec {
pname = "pytest-mock";
2019-04-24 18:42:49 +02:00
version = "1.10.4";
2019-02-14 08:37:27 +01:00
src = fetchPypi {
inherit pname version;
2019-04-24 18:42:49 +02:00
sha256 = "5bf5771b1db93beac965a7347dc81c675ec4090cb841e49d9d34637a25c30568";
};
2019-02-14 08:37:27 +01:00
propagatedBuildInputs = lib.optional (!isPy3k) mock;
nativeBuildInputs = [ setuptools_scm pytest ];
checkPhase = ''
py.test
'';
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; [ nand0p ];
};
}