summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/httpagentparser/default.nix
blob: bc7a8e33f4aca63dc36a85c3e57ea554f2444a46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:

buildPythonPackage rec {
  pname = "httpagentparser";
  version = "1.9.5";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-U879nWWZD2/lnAN4ytjqG53493DS6L2dh2LtrgM76Ao=";
  };

  # PyPi version does not include test directory
  doCheck = false;

  pythonImportsCheck = [
    "httpagentparser"
  ];

  meta = with lib; {
    description = "Module to extract OS, Browser, etc. information from http user agent string";
    homepage = "https://github.com/shon/httpagentparser";
    license = licenses.mit;
    maintainers = with maintainers; [ gador ];
  };
}