mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
f70f3b3005
According to https://github.com/tox-dev/detox/blob/0.19/README.md, "detox is unmaintained and incompatible with tox > 3.6." We currently have tox 3.7.
31 lines
680 B
Nix
31 lines
680 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, pytest, tox, py, eventlet }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "detox";
|
|
version = "0.19";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "e650f95f0c7f5858578014b3b193e5dac76c89285c1bbe4bae598fd641bf9cd3";
|
|
};
|
|
|
|
buildInputs = [ pytest ];
|
|
propagatedBuildInputs = [ tox py eventlet ];
|
|
|
|
checkPhase = ''
|
|
py.test
|
|
'';
|
|
|
|
# eventlet timeout, and broken invokation 3.5
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "What is detox?";
|
|
homepage = https://bitbucket.org/hpk42/detox;
|
|
license = licenses.mit;
|
|
# detox is unmaintained and incompatible with tox > 3.6
|
|
broken = true;
|
|
};
|
|
}
|