Unverified Commit 9d499bd0 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.nocasedict: add setuptools-scm (#446743)

parents 8cf18751 804305fc
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -3,8 +3,8 @@
  buildPythonPackage,
  fetchPypi,
  pytestCheckHook,
  pythonOlder,
  setuptools,
  setuptools-scm,
}:

buildPythonPackage rec {
@@ -12,14 +12,15 @@ buildPythonPackage rec {
  version = "2.1.0";
  pyproject = true;

  disabled = pythonOlder "3.10";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-tWPVhRy7DgsQ+7YYm6h+BhLSLlpvOgBKRXOrWziqqn0=";
  };

  build-system = [ setuptools ];
  build-system = [
    setuptools
    setuptools-scm
  ];

  nativeCheckInputs = [ pytestCheckHook ];