···11{ lib22, buildPythonPackage33, fetchPypi44+, pythonOlder45}:5667buildPythonPackage rec {78 pname = "httpagentparser";88- version = "1.9.3";99+ version = "1.9.5";1010+ format = "setuptools";9111010- # Github version does not have any release tags1212+ disabled = pythonOlder "3.7";1313+1114 src = fetchPypi {1215 inherit pname version;1313- sha256 = "1x20j4gyx4vfsxs3bx8qcbdhq7n34gjr8gd01qlri96wpmn4c3rp";1616+ hash = "sha256-U879nWWZD2/lnAN4ytjqG53493DS6L2dh2LtrgM76Ao=";1417 };15181619 # PyPi version does not include test directory1720 doCheck = false;18211919- pythonImportsCheck = [ "httpagentparser" ];2222+ pythonImportsCheck = [2323+ "httpagentparser"2424+ ];20252126 meta = with lib; {2727+ description = "Module to extract OS, Browser, etc. information from http user agent string";2228 homepage = "https://github.com/shon/httpagentparser";2323- description = "Extracts OS Browser etc information from http user agent string";2429 license = licenses.mit;2530 maintainers = with maintainers; [ gador ];2631 };