pythonPackages.detox: remove
This commit is contained in:
parent
f0c7019005
commit
ba5559fd7a
@ -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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user