ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / nocaselist / default.nix
blob083174c824dc738a9eaf870d1dfe0cb1c5664a96
1 { lib, buildPythonPackage, fetchPypi
2 , pytest
3 }:
5 buildPythonPackage rec {
6   pname = "nocaselist";
7   version = "1.0.6";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "sha256-SPBn+MuEEkXzTQMSC8G6mQDxOxnLUbzGx77gF/fIdNo=";
12   };
14   checkInputs = [
15     pytest
16   ];
18   pythonImportsCheck = [
19     "nocaselist"
20   ];
22   meta = with lib; {
23     description = "A case-insensitive list for Python";
24     homepage = "https://github.com/pywbem/nocaselist";
25     license = licenses.lgpl21Plus;
26     maintainers = with maintainers; [ freezeboy ];
27   };