gawd: init at 1.1.1
This commit is contained in:
parent
589df2340b
commit
8f9ef840ee
3 changed files with 48 additions and 0 deletions
44
pkgs/development/python-modules/gawd/default.nix
Normal file
44
pkgs/development/python-modules/gawd/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -8392,6 +8392,8 @@ with pkgs;
|
|||
|
||||
gauge = callPackage ../development/tools/gauge { };
|
||||
|
||||
gawd = python3Packages.toPythonApplication python3Packages.gawd;
|
||||
|
||||
gawk = callPackage ../tools/text/gawk {
|
||||
inherit (darwin) locale;
|
||||
};
|
||||
|
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue