depot/third_party/nixpkgs/pkgs/development/python-modules/maison/default.nix
Default email 23b612e36f Project import generated by Copybara.
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
2024-01-25 23:12:00 +09:00

57 lines
1,005 B
Nix

{ lib
, buildPythonPackage
, click
, fetchFromGitHub
, poetry-core
, pydantic
, pytestCheckHook
, pythonOlder
, pythonRelaxDepsHook
, toml
}:
buildPythonPackage rec {
pname = "maison";
version = "1.4.3";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "dbatten5";
repo = "maison";
rev = "refs/tags/v${version}";
hash = "sha256-2hUmk91wr5o2cV3un2nMoXDG+3GT7SaIOKY+QaZY3nw=";
};
pythonRelaxDeps = [
"pydantic"
];
nativeBuildInputs = [
poetry-core
pythonRelaxDepsHook
];
propagatedBuildInputs = [
click
pydantic
toml
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"maison"
];
meta = with lib; {
description = "Library to read settings from config files";
homepage = "https://github.com/dbatten5/maison";
changelog = "https://github.com/dbatten5/maison/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}