mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
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";
|
||
|
};
|
||
|
}
|