Commit ef6f34ec authored by Sergei Trofimovich's avatar Sergei Trofimovich
Browse files

pypy3Packages.celery.tests: fix the eval

Without the change test eval vails as:

    $ nix build --no-link -f. pypy3Packages.celery.tests
    error:
       … while evaluating the attribute 'sourcehut'
         at pkgs/development/python-modules/celery/default.nix:122:26:
          121|   passthru.tests = {
          122|     inherit (nixosTests) sourcehut;
             |                          ^
          123|   };

       error: attribute 'sourcehut' missing
       at pkgs/development/python-modules/celery/default.nix:122:26:
          121|   passthru.tests = {
          122|     inherit (nixosTests) sourcehut;
             |                          ^
          123|   };
parent 429b4bdc
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -118,10 +118,6 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "celery" ];

  passthru.tests = {
    inherit (nixosTests) sourcehut;
  };

  meta = with lib; {
    description = "Distributed task queue";
    homepage = "https://github.com/celery/celery/";