Unverified Commit 2e22b70d authored by Madoura's avatar Madoura
Browse files

python3Packages.desktop-entry-lib: init at 3.1

parent df4a0780
Loading
Loading
Loading
Loading
+35 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, pythonOlder
, pytestCheckHook
, fetchFromGitea
, setuptools
}:

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

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

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

  meta = with lib; {
    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 = licenses.bsd2;
    maintainers = with maintainers; [ Madouura ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2717,6 +2717,8 @@ self: super: with self; {
  derpconf = callPackage ../development/python-modules/derpconf { };
  desktop-entry-lib = callPackage ../development/python-modules/desktop-entry-lib { };
  desktop-notifier = callPackage ../development/python-modules/desktop-notifier { };
  detect-secrets = callPackage ../development/python-modules/detect-secrets { };