1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytestCheckHook
5, six
6}:
7
8buildPythonPackage rec {
9 pname = "nocasedict";
10 version = "2.0.1";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-lgy2mfEgnagKw546tQqnNC/oyp9wYGwjRHpRBVBDXlA=";
15 };
16
17 propagatedBuildInputs = [
18 six
19 ];
20
21 nativeCheckInputs = [
22 pytestCheckHook
23 ];
24
25 pythonImportsCheck = [
26 "nocasedict"
27 ];
28
29 meta = with lib; {
30 description = "A case-insensitive ordered dictionary for Python";
31 homepage = "https://github.com/pywbem/nocasedict";
32 license = licenses.lgpl21Plus;
33 maintainers = with maintainers; [ freezeboy ];
34 };
35}