2023-01-28 20:49:10 +00:00
|
|
|
final: prev:
|
2023-05-17 21:56:46 +00:00
|
|
|
with prev.python3Packages; {
|
2022-02-25 12:31:45 +00:00
|
|
|
python-wiki-fetch = buildPythonPackage rec {
|
2022-10-18 14:32:14 +00:00
|
|
|
inherit (prev.sources.wik) pname version src;
|
2022-02-25 12:31:45 +00:00
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
cd test
|
|
|
|
${python.interpreter} test.py
|
|
|
|
'';
|
|
|
|
|
2022-02-27 17:14:59 +00:00
|
|
|
format = "flit";
|
|
|
|
|
2022-02-25 12:31:45 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
beautifulsoup4
|
|
|
|
requests
|
|
|
|
];
|
2022-02-27 17:24:08 +00:00
|
|
|
|
|
|
|
meta = with prev.lib; {
|
2022-07-07 20:25:14 +00:00
|
|
|
description = "wik is a tool to view wikipedia pages from your terminal";
|
2022-02-27 17:24:08 +00:00
|
|
|
homepage = "https://github.com/yashsinghcodes/wik";
|
|
|
|
license = licenses.mit;
|
2023-01-28 20:49:10 +00:00
|
|
|
maintainers = with maintainers; [teutat3s];
|
2022-02-27 17:24:08 +00:00
|
|
|
};
|
2022-02-25 12:31:45 +00:00
|
|
|
};
|
|
|
|
}
|