43 lines
788 B
Nix

{
lib,
fetchFromGitHub,
python3,
}:
python3.pkgs.buildPythonApplication rec {
pname = "uddup";
version = "0.9.3";
pyproject = true;
src = fetchFromGitHub {
owner = "rotemreiss";
repo = "uddup";
rev = "v${version}";
sha256 = "1f5dm3772hiik9irnyvbs7wygcafbwi7czw3b47cwhb90b8fi5hg";
};
build-system = with python3.pkgs; [
setuptools
];
dependencies = with python3.pkgs; [
colorama
];
nativeCheckInputs = with python3.pkgs; [
pytestCheckHook
];
pythonImportsCheck = [
"uddup"
];
meta = with lib; {
description = "Tool for de-duplication URLs";
mainProgram = "uddup";
homepage = "https://github.com/rotemreiss/uddup";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}