Commit 62bfaf2f authored by Philipp Arras's avatar Philipp Arras
Browse files

python3Packages.nuclear: 2.2.5 -> 2.3.1

parent 42e81cc7
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -13,14 +13,14 @@

buildPythonPackage rec {
  pname = "nuclear";
  version = "2.2.5";
  version = "2.3.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "igrek51";
    repo = "nuclear";
    rev = version;
    hash = "sha256-JuO7BKmlQE6bWKqy1QvX5U4A9YkKu/4ouTSJh9R7JGo=";
    hash = "sha256-UeU803SYMBLSWXjuxtWP2R2dBumRom+qsj2ljTiYFm0=";
  };

  build-system = [ setuptools ];
@@ -39,10 +39,6 @@ buildPythonPackage rec {
    # Disabled because test tries to install bash in a non-NixOS way
    "tests/autocomplete/test_bash_install.py"
  ];
  disabledTests = [
    # Setting the time zone in nix sandbox does not work - to be investigated
    "test_context_logger"
  ];
  pythonImportsCheck = [ "nuclear" ];

  meta = with lib; {