nixpkgs/pkgs/development/python-modules/pySmartDL/default.nix
emilylange 139013bc42
maintainers: remove WeebSorceress
as their GitHub account appears to be deleted
2023-06-04 16:26:31 +02:00

26 lines
579 B
Nix

{ 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; [ ];
};
}