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

Merge pull request #218287 from fabaff/nocaselist-bump

python310Packages.nocaselist: 1.0.6 -> 1.1.0 
parents efb6c226 a9b78b18
Loading
Loading
Loading
Loading
+17 −5
Original line number Diff line number Diff line
{ lib, buildPythonPackage, fetchPypi
, pytest
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
, six
}:

buildPythonPackage rec {
  pname = "nocaselist";
  version = "1.0.6";
  version = "1.1.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-SPBn+MuEEkXzTQMSC8G6mQDxOxnLUbzGx77gF/fIdNo=";
    sha256 = "sha256-qZOEq8cAxAnp3vcUN2PhjfrTMv3/fjD64fbRows3J3I=";
  };

  propagatedBuildInputs = [
    six
  ];

  nativeCheckInputs = [
    pytest
    pytestCheckHook
  ];

  pythonImportsCheck = [
@@ -22,6 +33,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "A case-insensitive list for Python";
    homepage = "https://github.com/pywbem/nocaselist";
    changelog = "https://github.com/pywbem/nocaselist/blob/${version}/docs/changes.rst";
    license = licenses.lgpl21Plus;
    maintainers = with maintainers; [ freezeboy ];
  };