ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / robot-detection / default.nix
blob31b1f43a4e24fa7fbcc4730c9354534244cf212f
1 { lib, buildPythonPackage, fetchPypi, six }:
3 buildPythonPackage rec {
4   pname = "robot-detection";
5   version = "0.4";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "1xd2jm3yn31bnk1kqzggils2rxj26ylxsfz3ap7bhr3ilhnbg3rx";
10   };
12   propagatedBuildInputs = [ six ];
14   # no tests in archive
15   doCheck = false;
17   meta = with lib; {
18     description = "Library for detecting if a HTTP User Agent header is likely to be a bot";
19     homepage = "https://github.com/rory/robot-detection";
20     license = licenses.gpl3Plus;
21   };