22 lines
559 B
Nix
22 lines
559 B
Nix
{ lib, stdenv, python3Packages }:
|
|
with python3Packages;
|
|
buildPythonApplication {
|
|
pname = "download";
|
|
version = "2.0";
|
|
|
|
src = ./.;
|
|
doCheck = false;
|
|
|
|
buildInputs = [ setuptools ];
|
|
propagatedBuildInputs = [ pyyaml types-pyyaml ];
|
|
|
|
meta = with lib; {
|
|
description =
|
|
"Download links from many sources (X, Instagram, YouTube, etc) in an organized manner.";
|
|
# homepage = "https://github.com/lakoliu/Furtherance";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ CaptainJawZ ];
|
|
};
|
|
}
|