nixpkgs/pkgs/development/python-modules/thelogrus/default.nix
Martin Weinelt 89d6208e63
python311Packages.thelogrus: relax pyaml constraint
Checking runtime dependencies for thelogrus-0.7.0-py3-none-any.whl
  - pyaml<22.0.0,>=21.10.1 not satisifeid by version 23.9.6
2023-12-20 20:10:32 +01:00

54 lines
977 B
Nix

{ lib
, buildPythonPackage
, dateutils
, fetchFromGitHub
, poetry-core
, pyaml
, pythonOlder
, pythonRelaxDepsHook
}:
buildPythonPackage rec {
pname = "thelogrus";
version = "0.7.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "unixorn";
repo = "thelogrus";
rev = "refs/tags/v${version}";
hash = "sha256-96/EjDh5XcTsfUcTnsltsT6LMYbyKuM/eNyeq2Pukfo=";
};
nativeBuildInputs = [
poetry-core
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"pyaml"
];
propagatedBuildInputs = [
dateutils
pyaml
];
# Module has no unit tests
doCheck = false;
pythonImportsCheck = [
"thelogrus"
];
meta = with lib; {
description = "Python 3 version of logrus";
homepage = "https://github.com/unixorn/thelogrus";
changelog = "https://github.com/unixorn/thelogrus/blob/${version}/ChangeLog.md";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}