python310Packages.nocaselist: 1.0.6 -> 1.1.0

Changelog: https://github.com/pywbem/nocaselist/blob/1.1.0/docs/changes.rst
This commit is contained in:
Fabian Affolter 2023-02-25 18:10:45 +01:00
parent 60acc6fbd2
commit a9b78b18a5

View File

@ -3,20 +3,25 @@
, 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 = [
pytestCheckHook
];