Files
nixpkgs/pkgs/development/python-modules/bot-safe-agents/default.nix
2026-03-20 03:08:48 +00:00

32 lines
725 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage rec {
pname = "bot-safe-agents";
version = "1.2";
pyproject = true;
src = fetchFromGitHub {
owner = "ivan-sincek";
repo = "bot-safe-agents";
tag = "v${version}";
hash = "sha256-b4X3z8jX8kF3G1CEYxWl2jhWid3fRl7WfIMRfvAWlko=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "bot_safe_agents" ];
meta = {
description = "Library for fetching a list of bot-safe user agents";
homepage = "https://github.com/ivan-sincek/bot-safe-agents";
changelog = "https://github.com/ivan-sincek/bot-safe-agents/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = [ ];
};
}