python3Packages.pyres: remove

This commit is contained in:
natsukium 2023-06-20 22:17:21 +09:00
parent 11eb1c2bc9
commit 32cef91b38
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53
3 changed files with 1 additions and 35 deletions

View File

@ -1,33 +0,0 @@
{ lib, stdenv, fetchPypi, buildPythonPackage, fetchFromGitHub, simplejson, redis, setproctitle, nose, pkgs }:
buildPythonPackage rec {
pname = "pyres";
version = "1.5";
propagatedBuildInputs = [ simplejson setproctitle redis pkgs.ps ];
nativeCheckInputs = [ nose pkgs.redis ];
# PyPI tarball doesn't contain tests so let's use GitHub
src = fetchFromGitHub {
owner = "binarydud";
repo = pname;
rev = version;
sha256 = "1rkpv7gbjxl9h9g7kncmsrgmi77l7pgfq8d7dbnsr3ia2jmjqb8y";
};
# started redis-server makes this hang on darwin
doCheck = !stdenv.isDarwin;
checkPhase = ''
redis-server &
nosetests . --exclude test_worker_pids
'';
meta = with lib; {
description = "Python resque clone";
homepage = "https://github.com/binarydud/pyres";
license = licenses.mit;
maintainers = with maintainers; [ jluttine ];
broken = true; # not compatible with latest redis
};
}

View File

@ -228,6 +228,7 @@ mapAliases ({
pyramid_hawkauth = throw "pyramid_hawkauth has been removed because it is no longer maintained"; # added 2023-02-2
pyramid_jinja2 = pyramid-jinja2; # added 2023-06-06
pyreadability = readability-lxml; # added 2022-05-24
pyres = throw "pyres has been removed, since it is abandoned and broken"; # added 2023-06-20
pyroute2-core = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
pyroute2-ethtool = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16
pyroute2-ipdb = throw "pyroute2 migrated back to a single package scheme in version 0.7.1"; # added 2022-07-16

View File

@ -9269,8 +9269,6 @@ self: super: with self; {
pyregion = callPackage ../development/python-modules/pyregion { };
pyres = callPackage ../development/python-modules/pyres { };
pyric = callPackage ../development/python-modules/pyric { };
pyrisco = callPackage ../development/python-modules/pyrisco { };