Unverified Commit 4ba5ea3a authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.dotwiz: modernize (#437879)

parents cd129a86 44cc89fd
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -5,12 +5,13 @@
  pyheck,
  pytestCheckHook,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
  pname = "dotwiz";
  version = "0.4.0";
  format = "setuptools";
  pyproject = true;

  disabled = pythonOlder "3.7";

@@ -21,21 +22,20 @@ buildPythonPackage rec {
    hash = "sha256-ABmkwpJ40JceNJieW5bhg0gqWNrR6Wxj84nLCjKU11A=";
  };

  propagatedBuildInputs = [ pyheck ];
  build-system = [ setuptools ];

  dependencies = [ pyheck ];

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "dotwiz" ];

  disabledTestPaths = [
    "benchmarks"
    "integration*"
  ];
  disabledTestPaths = [ "benchmarks" ];

  meta = with lib; {
    description = "Dict subclass that supports dot access notation";
    homepage = "https://github.com/rnag/dotwiz";
    changelog = "https://github.com/rnag/dotwiz/blob/v${version}/HISTORY.rst";
    changelog = "https://github.com/rnag/dotwiz/blob/v${src.tag}/HISTORY.rst";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };