Unverified Commit a1a67c2e authored by natsukium's avatar natsukium
Browse files

python3Packages.zstandard: enable tests

parent fcc4b91f
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -6,6 +6,7 @@
  cffi,
  setuptools,
  hypothesis,
  pytestCheckHook,
}:

buildPythonPackage rec {
@@ -31,7 +32,14 @@ buildPythonPackage rec {

  dependencies = lib.optionals isPyPy [ cffi ];

  nativeCheckInputs = [ hypothesis ];
  nativeCheckInputs = [
    hypothesis
    pytestCheckHook
  ];

  preCheck = ''
    rm -r zstandard
  '';

  pythonImportsCheck = [ "zstandard" ];