summary refs log tree commit diff
path: root/pkgs/development/python-modules/pySmartDL/default.nix
blob: cfad2238fbd0172694e4927a2602dcc9f3599a93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, buildPythonPackage
, fetchFromGitHub
}:

buildPythonPackage rec {
  pname = "pySmartDL";
  version = "1.3.4";
  src = fetchFromGitHub ({
    owner = "iTaybb";
    repo = pname;
    rev = "b93df794e1e60017c42d9520ac097b6fd38c2e8b";
    hash = "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; [ ];
  };
}