nixpkgs/pkgs/tools/misc/instaloader/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
768 B
Nix
Raw Normal View History

2022-07-09 12:12:18 +00:00
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, sphinx
, requests
}:
buildPythonPackage rec {
pname = "instaloader";
2023-02-16 09:17:16 +00:00
version = "4.9.6";
2022-07-09 12:12:18 +00:00
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "instaloader";
repo = "instaloader";
2022-08-19 13:47:06 +00:00
rev = "refs/tags/v${version}";
2023-02-16 09:17:16 +00:00
sha256 = "sha256-ZxvJPDj+r7KSyXpYNQIgnda5OS77GOFM901ZHgR6c4k=";
2022-07-09 12:12:18 +00:00
};
propagatedBuildInputs = [
requests
sphinx
];
pythonImportsCheck = [ "instaloader" ];
meta = with lib; {
homepage = "https://instaloader.github.io/";
description = "Download pictures (or videos) along with their captions and other metadata from Instagram";
maintainers = with maintainers; [ creator54 ];
license = licenses.mit;
};
}