depot/third_party/nixpkgs/pkgs/development/python-modules/anchor-kr/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

26 lines
724 B
Nix

{ 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 ];
};
}