depot/third_party/nixpkgs/pkgs/development/python-modules/maison/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

51 lines
980 B
Nix

{
lib,
buildPythonPackage,
click,
fetchFromGitHub,
poetry-core,
pydantic,
pytestCheckHook,
pythonOlder,
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
];
propagatedBuildInputs = [
click
pydantic
toml
];
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "maison" ];
meta = with lib; {
description = "Library to read settings from config files";
mainProgram = "maison";
homepage = "https://github.com/dbatten5/maison";
changelog = "https://github.com/dbatten5/maison/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}