Skip to content

Commit

Permalink
anchor: init at 3
Browse files Browse the repository at this point in the history
  • Loading branch information
PassiveLemon committed Dec 3, 2023
1 parent 62beb3d commit 3fae5c9
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/development/python-modules/anchor-kr/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}

0 comments on commit 3fae5c9

Please sign in to comment.