Unverified Commit c730ac0d authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #313163 from natsukium/nosejs/drop

python311Packages.nosejs: drop
parents 7d2c5c80 432bbca4
Loading
Loading
Loading
Loading
+0 −29
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, nose
}:

buildPythonPackage rec {
  pname = "nosejs";
  version = "0.9.4";

  src = fetchPypi {
    pname = "NoseJS";
    inherit version;
    sha256 = "0qrhkd3sga56qf6k0sqyhwfcladwi05gl6aqmr0xriiq1sgva5dy";
  };

  nativeCheckInputs = [ nose ];

  checkPhase = ''
    nosetests -v
  '';

  meta = with lib; {
    homepage = "https://pypi.org/project/NoseJS/";
    description = "A Nose plugin for integrating JavaScript tests into a Python test suite";
    license = licenses.free;
  };

}
+1 −0
Original line number Diff line number Diff line
@@ -299,6 +299,7 @@ mapAliases ({
  net2grid = gridnet; # add 2022-04-22
  nghttp2 = throw "in 1.52.0 removed deprecated python bindings."; # added 2023-06-08
  ninja-python = ninja; # add 2022-08-03
  nosejs = throw "nosejs has been removed since it has not been maintained for 15 years and there are no dependent packages"; # added 2024-05-21
  nose-cover3 = throw "nose-cover3 has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-02-16
  nose_progressive = throw "nose_progressive has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; #added 2023-02-21
  nose_warnings_filters = nose-warnings-filters; # added 2024-01-07
+0 −2
Original line number Diff line number Diff line
@@ -8873,8 +8873,6 @@ self: super: with self; {
  nose-timer = callPackage ../development/python-modules/nose-timer { };
  nosejs = callPackage ../development/python-modules/nosejs { };
  nose-pattern-exclude = callPackage ../development/python-modules/nose-pattern-exclude { };
  nose-randomly = callPackage ../development/python-modules/nose-randomly { };