3a4df29a92
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
25 lines
595 B
Nix
25 lines
595 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pySmartDL";
|
|
version = "1.3.4";
|
|
src = fetchFromGitHub ({
|
|
owner = "iTaybb";
|
|
repo = pname;
|
|
rev = "b93df794e1e60017c42d9520ac097b6fd38c2e8b";
|
|
sha256 = "sha256-Etyv3xCB1cGozWDsskygwcTHJfC+V5hvqBNQAF8SIMM=";
|
|
});
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/iTaybb/pySmartDL";
|
|
description = "A Smart Download Manager for Python";
|
|
license = licenses.unlicense;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ WeebSorceress ];
|
|
};
|
|
}
|