biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / ua-parser / default.nix
blobfa0dfffdf6b0e0d85442f571868e96f67cac0cad
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pyyaml,
6   pytestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "ua-parser";
11   version = "0.18.0";
13   format = "setuptools";
15   src = fetchFromGitHub {
16     owner = "ua-parser";
17     repo = "uap-python";
18     rev = version;
19     fetchSubmodules = true;
20     hash = "sha256-GiuGPnyYL0HQ/J2OpDTD1/panZCuzKtD3mKW5op5lXA=";
21   };
23   patches = [ ./dont-fetch-submodule.patch ];
25   nativeBuildInputs = [ pyyaml ];
27   nativeCheckInputs = [ pytestCheckHook ];
29   preCheck = ''
30     # import from $out
31     rm ua_parser/__init__.py
32   '';
34   pythonImportsCheck = [ "ua_parser" ];
36   meta = with lib; {
37     description = "Python implementation of the UA Parser";
38     homepage = "https://github.com/ua-parser/uap-python";
39     license = licenses.asl20;
40     platforms = platforms.unix;
41     maintainers = with maintainers; [ dotlambda ];
42   };