nixpkgs/pkgs/applications/misc/cambrinary/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
832 B
Nix
Raw Normal View History

{ lib
, buildPythonApplication
, fetchFromGitHub
2023-09-09 21:52:39 +00:00
, flit
, aiohttp
, beautifulsoup4
}:
buildPythonApplication rec {
pname = "cambrinary";
version = "unstable-2023-07-16";
2023-09-09 21:52:39 +00:00
format = "pyproject";
src = fetchFromGitHub {
owner = "xueyuanl";
repo = "cambrinary";
rev = "f0792ef70654a48a7677b6e1a7dee454b2c0971c";
hash = "sha256-wDcvpKAY/6lBjO5h3qKH3+Y2G2gm7spcKCXFMt/bAtE=";
};
2023-09-09 21:52:39 +00:00
nativeBuildInputs = [
flit
];
propagatedBuildInputs = [
aiohttp
beautifulsoup4
];
pythonImportsCheck = [ "cambrinary" ];
meta = with lib; {
description = "Cambridge dictionary in a terminal";
mainProgram = "cambrinary";
homepage = "https://github.com/xueyuanl/cambrinary";
license = licenses.gpl3Only;
platforms = platforms.unix;
maintainers = with maintainers; [ azahi ];
};
}