Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / anchor-kr / default.nix
blob32ce534e6b6b72ade4b363dbf9b5743bfaa92300
1 { lib,
2   buildPythonPackage,
3   fetchFromGitHub
4 }:
5 buildPythonPackage {
6   pname = "anchor";
7   version = "3";
8   format = "setuptools";
10   src = fetchFromGitHub {
11     owner = "justfoolingaround";
12     repo = "anchor";
13     # Using the commit hash because upstream does not have releases. https://github.com/justfoolingaround/anchor/issues/1
14     rev = "4cedb6a51877ed3a292cad61eb19013382915e86";
15     hash = "sha256-t75IFBSz6ncHRqXRxbrM9EQdr8xPXjSd9di+/y2LegE=";
16   };
18   pythonImportsCheck = [ "anchor" ];
20   meta = with lib; {
21     description = "Python library for scraping";
22     homepage = "https://github.com/justfoolingaround/anchor";
23     license = licenses.unfree;
24     maintainers = with maintainers; [ passivelemon ];
25   };