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

python312Packages.nocaselist: 2.0.2 -> 2.0.3 (#339282)

parents 3dbcb4ed 4e0ca3fb
Loading
Loading
Loading
Loading
+10 −7
Original line number Diff line number Diff line
@@ -2,26 +2,29 @@
  lib,
  buildPythonPackage,
  fetchPypi,
  pytest7CheckHook,
  pytestCheckHook,
  pythonOlder,
  setuptools,
  six,
}:

buildPythonPackage rec {
  pname = "nocaselist";
  version = "2.0.2";
  format = "setuptools";
  version = "2.0.3";
  pyproject = true;

  disabled = pythonOlder "3.7";
  disabled = pythonOlder "3.10";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-MnCLcAoaUxM+a7XMUzMsl3Wwx8lZpflyV5MXH9L0yKU=";
    hash = "sha256-VXFNqEM/tIQ855dASXfkOF1ePfnkqgD33emD/YdBD+8=";
  };

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

  nativeCheckInputs = [ pytest7CheckHook ];
  dependencies = [ six ];

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "nocaselist" ];