mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
python311Packages.thelogrus: init at 0.7.0
This commit is contained in:
parent
80b7bfad6d
commit
96fc268994
47
pkgs/development/python-modules/thelogrus/default.nix
Normal file
47
pkgs/development/python-modules/thelogrus/default.nix
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, dateutils
|
||||||
|
, fetchFromGitHub
|
||||||
|
, poetry-core
|
||||||
|
, pyaml
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
|
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
|
||||||
|
];
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -12892,6 +12892,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
thefuzz = callPackage ../development/python-modules/thefuzz { };
|
thefuzz = callPackage ../development/python-modules/thefuzz { };
|
||||||
|
|
||||||
|
thelogrus = callPackage ../development/python-modules/thelogrus { };
|
||||||
|
|
||||||
thermobeacon-ble = callPackage ../development/python-modules/thermobeacon-ble { };
|
thermobeacon-ble = callPackage ../development/python-modules/thermobeacon-ble { };
|
||||||
|
|
||||||
thermopro-ble = callPackage ../development/python-modules/thermopro-ble { };
|
thermopro-ble = callPackage ../development/python-modules/thermopro-ble { };
|
||||||
|
Loading…
Reference in New Issue
Block a user