mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
cansina: init at 0.9
Web Content Discovery Tool https://github.com/deibit/cansina
This commit is contained in:
parent
9f434bd436
commit
2e55cb9b28
39
pkgs/by-name/ca/cansina/package.nix
Normal file
39
pkgs/by-name/ca/cansina/package.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ 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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user