gawd: init at 1.1.1

This commit is contained in:
Pol Dellaiera 2024-03-10 13:49:05 +01:00
parent 589df2340b
commit 8f9ef840ee
No known key found for this signature in database
GPG Key ID: D476DFE9C67467CA
3 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,44 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, wheel
, ruamel-yaml
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "gawd";
version = "1.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "pooya-rostami";
repo = "gawd";
rev = version;
hash = "sha256-DCcU7vO5VApRsO+ljVs827TrHIfe3R+1/2wgBEcp1+c=";
};
nativeBuildInputs = [
setuptools
wheel
];
propagatedBuildInputs = [
ruamel-yaml
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "gawd" ];
meta = {
changelog = "https://github.com/pooya-rostami/gawd/releases/tag/${version}";
description = "Gawd is a Python library and command-line tool for computing syntactic differences between two GitHub Actions workflow files";
homepage = "https://github.com/pooya-rostami/gawd";
license = lib.licenses.lgpl3Only;
maintainers = with lib.maintainers; [ drupol ];
};
}

View File

@ -8392,6 +8392,8 @@ with pkgs;
gauge = callPackage ../development/tools/gauge { };
gawd = python3Packages.toPythonApplication python3Packages.gawd;
gawk = callPackage ../tools/text/gawk {
inherit (darwin) locale;
};

View File

@ -4521,6 +4521,8 @@ self: super: with self; {
inherit (pkgs) bluez glib pkg-config;
};
gawd = callPackage ../development/python-modules/gawd { };
gb-io = callPackage ../development/python-modules/gb-io { };
gbinder-python = callPackage ../development/python-modules/gbinder-python { };