linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / nocasedict / default.nix
bloba9cb021a84135416507ef63bb02eca1dfa253828
1 { lib, buildPythonPackage, fetchPypi
2 , pytest
3 }:
5 buildPythonPackage rec {
6   pname = "nocasedict";
7   version = "1.0.2";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "86e2dae49e34de7c31b65b486c8f9aa58b66dc2e8ee9b34c390c6c58885c85a0";
12   };
14   checkInputs = [
15     pytest
16   ];
18   pythonImportsCheck = [
19     "nocasedict"
20   ];
22   meta = with lib; {
23     description = "A case-insensitive ordered dictionary for Python";
24     homepage = "https://github.com/pywbem/nocasedict";
25     license = licenses.lgpl21Plus;
26     maintainers = with maintainers; [ freezeboy ];
27   };