summary refs log tree commit diff
path: root/pkgs/development/python-modules/fake-useragent/default.nix
blob: 9b207a81c3c73f7fc380c4c3362c9ab4f1f05d72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, fetchPypi, buildPythonPackage, six, pytest }:

buildPythonPackage rec {
  pname = "fake-useragent";
  version = "0.1.11";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0dfz3bpmjmaxlhda6hfgsac7afb65pljibi8zkp9gc0ffn5rj161";
  };

  propagatedBuildInputs = [ six ];

  checkInputs = [ pytest ];

  meta = with lib; {
    description = "Up to date simple useragent faker with real world database";
    homepage = "https://github.com/hellysmile/fake-useragent";
    license = licenses.asl20;
    maintainers = with maintainers; [ evanjs ];
  };
}