Merge pull request #92281 from jonringer/detox-remove

pythonPackages.detox: remove
This commit is contained in:
Benjamin Hipple 2020-07-04 12:35:00 -04:00 committed by GitHub
commit 68a0a9b433
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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 { };