mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
2e55cb9b28
Web Content Discovery Tool https://github.com/deibit/cansina
40 lines
823 B
Nix
40 lines
823 B
Nix
{ lib
|
|
, python3
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "cansina";
|
|
version = "0.9";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "deibit";
|
|
repo = "cansina";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-vDlYJSRBVFtEdE/1bN8PniFYkpggIKMcEakphHmaTos=";
|
|
};
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
asciitree
|
|
requests
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"cansina"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Web Content Discovery Tool";
|
|
homepage = "https://github.com/deibit/cansina";
|
|
changelog = "https://github.com/deibit/cansina/blob/${version}/CHANGELOG.md";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "cansina";
|
|
};
|
|
}
|