python3Packages.environs: 14.5.0 -> 14.6.0 (#492371)

This commit is contained in:
Fabian Affolter
2026-02-21 08:56:03 +00:00
committed by GitHub
@@ -11,21 +11,21 @@
python-dotenv,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "environs";
version = "14.5.0";
version = "14.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "sloria";
repo = "environs";
tag = version;
hash = "sha256-g9n4GuVSHB2VourVYlzp3zKO7MnJK4IAakbYV5tM8Uc=";
tag = finalAttrs.version;
hash = "sha256-TX8C3KIuvAkC+ArGFz9FXyqxd9pfTgmMqnLuYNIlA4o=";
};
nativeBuildInputs = [ flit-core ];
build-system = [ flit-core ];
propagatedBuildInputs = [
dependencies = [
marshmallow
python-dotenv
];
@@ -40,10 +40,10 @@ buildPythonPackage rec {
pythonImportsCheck = [ "environs" ];
meta = {
description = "Python modle for environment variable parsing";
description = "Python module for environment variable parsing";
homepage = "https://github.com/sloria/environs";
changelog = "https://github.com/sloria/environs/blob/${version}/CHANGELOG.md";
changelog = "https://github.com/sloria/environs/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})