forked from mirrors/nixpkgs
Merge pull request #167236 from graysonhead/master
python3Package.mergedb: init at 0.1.1
This commit is contained in:
commit
d8a2042c3e
|
@ -4656,6 +4656,12 @@
|
|||
githubId = 4656860;
|
||||
name = "Gaute Ravndal";
|
||||
};
|
||||
graysonhead = {
|
||||
email = "grayson@graysonhead.net";
|
||||
github = "graysonhead";
|
||||
githubId = 6179496;
|
||||
name = "Grayson Head";
|
||||
};
|
||||
grburst = {
|
||||
email = "GRBurst@protonmail.com";
|
||||
github = "GRBurst";
|
||||
|
|
51
pkgs/development/python-modules/mergedb/default.nix
Normal file
51
pkgs/development/python-modules/mergedb/default.nix
Normal file
|
@ -0,0 +1,51 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, colorama
|
||||
, fetchPypi
|
||||
, jinja2
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, pyyaml
|
||||
, setuptools
|
||||
, setuptools-scm
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mergedb";
|
||||
version = "0.1.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "2034c18dca23456c5b166b63d94300bcd8ec9f386e6cd639c2f66e141c0313f9";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pyyaml
|
||||
colorama
|
||||
jinja2
|
||||
setuptools
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"mergedb"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A tool/library for deep merging YAML files";
|
||||
homepage = "https://github.com/graysonhead/mergedb";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ graysonhead ];
|
||||
};
|
||||
}
|
||||
|
|
@ -5107,6 +5107,8 @@ in {
|
|||
python3Packages = self;
|
||||
});
|
||||
|
||||
mergedb = callPackage ../development/python-modules/mergedb { };
|
||||
|
||||
mergedeep = callPackage ../development/python-modules/mergedeep { };
|
||||
|
||||
merkletools = callPackage ../development/python-modules/merkletools { };
|
||||
|
|
Loading…
Reference in a new issue