pythonPackages.detox: remove

This commit is contained in:
Jonathan Ringer 2020-07-04 08:46:11 -07:00
parent f0c7019005
commit ba5559fd7a
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0
2 changed files with 1 additions and 31 deletions

View File

@ -1,30 +0,0 @@
{ 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;
};
}

View File

@ -2459,7 +2459,7 @@ in {
pretend = callPackage ../development/python-modules/pretend { };
detox = callPackage ../development/python-modules/detox { };
detox = throw "detox is no longer maintained, and was broken since may 2019"; # added 2020-07-04
pbkdf2 = callPackage ../development/python-modules/pbkdf2 { };