Commit 106334a0 authored by SystematicError's avatar SystematicError
Browse files

python3Packages.pyschemes: use `pyproject = true`

parent 7ca9381d
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -3,12 +3,13 @@
  buildPythonPackage,
  fetchFromGitHub,
  pytestCheckHook,
  setuptools,
}:

buildPythonPackage {
  pname = "pyschemes";
  version = "0-unstable-2022-09-12";
  format = "setuptools";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "spy16";
@@ -17,6 +18,8 @@ buildPythonPackage {
    hash = "sha256-jv6dlZlLuJlTqw2V21BUEhCIc/UGvyjbhggw82eGMz0=";
  };

  build-system = [ setuptools ];

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "pyschemes" ];