depot/third_party/nixpkgs/pkgs/development/python-modules/robot-detection/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

22 lines
534 B
Nix

{ lib, buildPythonPackage, fetchPypi, six }:
buildPythonPackage rec {
pname = "robot-detection";
version = "0.4";
src = fetchPypi {
inherit pname version;
sha256 = "1xd2jm3yn31bnk1kqzggils2rxj26ylxsfz3ap7bhr3ilhnbg3rx";
};
propagatedBuildInputs = [ six ];
# no tests in archive
doCheck = false;
meta = with lib; {
description = "Library for detecting if a HTTP User Agent header is likely to be a bot";
homepage = "https://github.com/rory/robot-detection";
license = licenses.gpl3Plus;
};
}