summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/desktop-entry-lib/default.nix
blob: d02e658687636e20538f9dd19be57ac9fa445e03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
  lib,
  buildPythonPackage,
  pytestCheckHook,
  fetchFromGitea,
  setuptools,
}:

buildPythonPackage rec {
  pname = "desktop-entry-lib";
  version = "3.1";
  pyproject = true;

  # We could use fetchPypi, but then the tests won't run
  src = fetchFromGitea {
    domain = "codeberg.org";
    owner = "JakobDev";
    repo = "desktop-entry-lib";
    rev = version;
    hash = "sha256-+c+FuLv88wc4yVw3iyFFtfbocnWzTCIe2DS0SWoj+VI=";
  };

  nativeBuildInputs = [ setuptools ];
  nativeCheckInputs = [ pytestCheckHook ];
  pythonImportsCheck = [ "desktop_entry_lib" ];

  meta = {
    description = "Allows reading and writing .desktop files according to the Desktop Entry Specification";
    homepage = "https://codeberg.org/JakobDev/desktop-entry-lib";
    changelog = "https://codeberg.org/JakobDev/desktop-entry-lib/releases/tag/${version}";
    license = lib.licenses.bsd2;
  };
}