nixpkgs/pkgs/development/python-modules/mockito/default.nix

28 lines
678 B
Nix
Raw Normal View History

2018-12-08 22:55:37 +03:00
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, funcsigs, pytest, numpy }:
buildPythonPackage rec {
version = "1.2.1";
2018-12-08 22:55:37 +03:00
pname = "mockito";
src = fetchPypi {
inherit pname version;
sha256 = "1ilj73bdk81v4l7ir6hbfvmslzbsxkgvz1asngbyf7w5gl2y5nyf";
2018-12-08 22:55:37 +03:00
};
propagatedBuildInputs = stdenv.lib.optionals (!isPy3k) [ funcsigs ];
checkInputs = [ pytest numpy ];
# tests are no longer packaged in pypi tarball
doCheck = false;
2018-12-08 22:55:37 +03:00
checkPhase = ''
pytest
'';
meta = with stdenv.lib; {
description = "Spying framework";
homepage = "https://github.com/kaste/mockito-python";
2018-12-08 22:55:37 +03:00
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}