mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:53:17 +00:00
python3Package.mergedb: init at 0.1.1
This commit is contained in:
parent
33a73886c4
commit
c19e64e43a
43
pkgs/development/python-modules/mergedb/default.nix
Normal file
43
pkgs/development/python-modules/mergedb/default.nix
Normal file
@ -0,0 +1,43 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, colorama
|
||||
, fetchPypi
|
||||
, jinja2
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, pyyaml
|
||||
, setuptools-scm
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "mergedb";
|
||||
version = "0.1.1";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "2034c18dca23456c5b166b63d94300bcd8ec9f386e6cd639c2f66e141c0313f9";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools-scm
|
||||
];
|
||||
propagatedBuildInputs = [
|
||||
pyyaml
|
||||
colorama
|
||||
jinja2
|
||||
];
|
||||
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 = [ maintainers.graysonhead ];
|
||||
};
|
||||
}
|
||||
|
@ -5109,6 +5109,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 New Issue
Block a user