Unverified Commit b5019955 authored by Emily's avatar Emily Committed by GitHub
Browse files

Merge pull request #327246 from lavafroth/python3Packages.pastescript/nose

python3Packages.pastescript: remove nose dependency
parents c2931770 e426922e
Loading
Loading
Loading
Loading
+5 −7
Original line number Diff line number Diff line
@@ -2,11 +2,10 @@
  lib,
  buildPythonPackage,
  fetchPypi,
  nose,
  python,
  pytestCheckHook,
  six,
  paste,
  setuptools,
  pastedeploy,
  pythonOlder,
}:
@@ -14,7 +13,7 @@
buildPythonPackage rec {
  pname = "pastescript";
  version = "3.6.0";
  format = "setuptools";
  pyproject = true;

  disabled = pythonOlder "3.7";

@@ -24,6 +23,8 @@ buildPythonPackage rec {
    hash = "sha256-HCLSt81TUWRr7tKMb3DrSipLklZR2a/Ko1AdBsq7UXE=";
  };

  build-system = [ setuptools ];

  propagatedBuildInputs = [
    paste
    pastedeploy
@@ -33,10 +34,7 @@ buildPythonPackage rec {
  # test suite seems to unset PYTHONPATH
  doCheck = false;

  nativeCheckInputs = [
    nose
    pytestCheckHook
  ];
  nativeCheckInputs = [ pytestCheckHook ];

  disabledTestPaths = [ "appsetup/testfiles" ];