nixpkgs/pkgs/development/python-modules/testfixtures/default.nix
2019-10-27 16:26:57 +01:00

27 lines
783 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, fetchpatch, isPy27
, mock, pytest, sybil, zope_component, twisted }:
buildPythonPackage rec {
pname = "testfixtures";
version = "6.10.0";
src = fetchPypi {
inherit pname version;
sha256 = "1kiv60i0s67v34x28j6cshby7n7mbhd7a7val639yvvlh1f0q8wx";
};
checkInputs = [ pytest mock sybil zope_component twisted ];
doCheck = !isPy27;
checkPhase = ''
# django is too much hasle to setup at the moment
pytest -W ignore::DeprecationWarning --ignore=testfixtures/tests/test_django testfixtures/tests
'';
meta = with stdenv.lib; {
homepage = https://github.com/Simplistix/testfixtures;
description = "A collection of helpers and mock objects for unit tests and doc tests";
license = licenses.mit;
};
}