fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib
2, python3
3, fetchFromGitHub
4}:
5
6python3.pkgs.buildPythonPackage rec {
7 pname = "duden";
8 version = "0.18.0";
9 format = "pyproject";
10
11 src = fetchFromGitHub {
12 owner = "radomirbosak";
13 repo = "duden";
14 rev = version;
15 hash = "sha256-ZrarN09Znw4m6YiZxD7q7dTJ49WjmHDobLnOt8JCwvc=";
16 };
17
18 nativeBuildInputs = [
19 python3.pkgs.poetry-core
20 ];
21
22 propagatedBuildInputs = with python3.pkgs; [
23 beautifulsoup4
24 crayons
25 pyxdg
26 pyyaml
27 requests
28 setuptools
29 ];
30
31 pythonImportsCheck = [ "duden" ];
32
33 meta = with lib; {
34 description = "CLI for http://duden.de dictionary written in Python";
35 homepage = "https://github.com/radomirbosak/duden";
36 changelog = "https://github.com/radomirbosak/duden/blob/${src.rev}/CHANGELOG.md";
37 license = licenses.mit;
38 maintainers = with maintainers; [ ];
39 };
40}