Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / ua-parser / default.nix
blob36d725d14f45945e212a1dd7b899410766a6813d
1 { lib, buildPythonPackage, fetchPypi, pyyaml }:
3 buildPythonPackage rec {
4   pname = "ua-parser";
5   version = "0.10.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0csh307zfz666kkk5idrw3crj1x8q8vsqgwqil0r1n1hs4p7ica7";
10   };
12   buildInputs = [ pyyaml ];
14   doCheck = false; # requires files from uap-core
16   meta = with lib; {
17     description = "A python implementation of the UA Parser";
18     homepage = "https://github.com/ua-parser/uap-python";
19     license = licenses.asl20;
20     platforms = platforms.unix;
21     maintainers = with maintainers; [ dotlambda ];
22   };