Unverified Commit d554eb04 authored by Pyrox's avatar Pyrox
Browse files

python312Packages.isbnlib: modernize

parent 0860e7ef
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -4,15 +4,13 @@
  fetchFromGitHub,
  pytestCheckHook,
  pytest-cov,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
  pname = "isbnlib";
  version = "3.10.14";
  format = "setuptools";

  disabled = pythonOlder "3.7";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "xlcnd";
@@ -21,6 +19,8 @@ buildPythonPackage rec {
    hash = "sha256-d6p0wv7kj+NOZJRE2rzQgb7PXv+E3tASIibYCjzCdx8=";
  };

  build-system = [ setuptools ];

  nativeCheckInputs = [
    pytestCheckHook
    pytest-cov