1{ lib, fetchPypi, buildPythonPackage, six, pytest }:
2
3buildPythonPackage rec {
4 pname = "fake-useragent";
5 version = "0.1.11";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0dfz3bpmjmaxlhda6hfgsac7afb65pljibi8zkp9gc0ffn5rj161";
10 };
11
12 propagatedBuildInputs = [ six ];
13
14 checkInputs = [ pytest ];
15
16 meta = with lib; {
17 description = "Up to date simple useragent faker with real world database";
18 homepage = "https://github.com/hellysmile/fake-useragent";
19 license = licenses.asl20;
20 maintainers = with maintainers; [ evanjs ];
21 };
22}