python3Packages.simber: disable on older Python releases

This commit is contained in:
Fabian Affolter 2022-03-11 13:33:48 +01:00 committed by GitHub
parent 580936b136
commit bc3db17488
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,20 +1,36 @@
{ lib, buildPythonPackage, fetchFromGitHub, colorama, pytestCheckHook }:
{ lib
, buildPythonPackage
, fetchFromGitHub
, colorama
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "simber";
version = "0.2.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "deepjyoti30";
repo = pname;
rev = version;
sha256 = "sha256-P4bhxu9Di4E2Zkd0vIkyDi1S6Y0V/EQSMF4ftWoiXKE=";
hash = "sha256-P4bhxu9Di4E2Zkd0vIkyDi1S6Y0V/EQSMF4ftWoiXKE=";
};
propagatedBuildInputs = [ colorama ];
propagatedBuildInputs = [
colorama
];
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "simber" ];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"simber"
];
meta = with lib; {
description = "Simple, minimal and powerful logger for Python";