1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-01 13:29:13 +03:00
nixpkgs/pkgs/development/python-modules/pySmartDL/default.nix

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

26 lines
595 B
Nix
Raw Normal View History

2022-06-06 12:52:51 -03:00
{ 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 ];
};
}