ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / user-agents / default.nix
blobd01c601c82a0a1d711be04d3aedc9c9bfcb04760
1 { lib, buildPythonPackage, fetchFromGitHub, ua-parser }:
3 buildPythonPackage rec {
4   pname = "user-agents";
5   version = "2.2.0";
7   # PyPI is missing devices.json
8   src = fetchFromGitHub {
9     owner = "selwin";
10     repo = "python-user-agents";
11     rev = "v${version}";
12     sha256 = "0pcbjqj21c2ixhl414bh2h8khi8y1igzfpkyqwan1pakix0lq45a";
13   };
15   propagatedBuildInputs = [ ua-parser ];
17   meta = with lib; {
18     description = "A Python library to identify devices by parsing user agent strings";
19     homepage = "https://github.com/selwin/python-user-agents";
20     license = licenses.mit;
21     platforms = platforms.unix;
22     maintainers = with maintainers; [ dotlambda ];
23   };