anchor: init at 3

This commit is contained in:
PassiveLemon 2023-07-26 10:09:38 -04:00
parent 62beb3db5b
commit 3fae5c931e

View File

@ -0,0 +1,26 @@
{ lib,
buildPythonPackage,
fetchFromGitHub
}:
buildPythonPackage {
pname = "anchor";
version = "3";
format = "setuptools";
src = fetchFromGitHub {
owner = "justfoolingaround";
repo = "anchor";
# Using the commit hash because upstream does not have releases. https://github.com/justfoolingaround/anchor/issues/1
rev = "4cedb6a51877ed3a292cad61eb19013382915e86";
hash = "sha256-t75IFBSz6ncHRqXRxbrM9EQdr8xPXjSd9di+/y2LegE=";
};
pythonImportsCheck = [ "anchor" ];
meta = with lib; {
description = "Python library for scraping";
homepage = "https://github.com/justfoolingaround/anchor";
license = licenses.unfree;
maintainers = with maintainers; [ passivelemon ];
};
}