python3Packages.about-time: init at 4.2.1

This commit is contained in:
Thiago Kenji Okada 2023-08-22 21:08:22 +01:00
parent ac7ed741a5
commit f2f6be5347
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib
, fetchPypi
, buildPythonPackage
}:
buildPythonPackage rec {
pname = "about-time";
version = "4.2.1";
# PyPi release does not contain test files, but the repo has no release tags,
# so while having no tests is not ideal, follow the PyPi releases for now
# TODO: switch to fetchFromGitHub once this issue is fixed:
# https://github.com/rsalmei/about-time/issues/15
src = fetchPypi {
inherit pname version;
hash = "sha256-alOIYtM85n2ZdCnRSZgxDh2/2my32bv795nEcJhH/s4=";
};
doCheck = false;
pythonImportsCheck = [
"about_time"
];
meta = with lib; {
description = "A cool helper for tracking time and throughput of code blocks, with beautiful human friendly renditions";
homepage = "https://github.com/rsalmei/about-time";
license = licenses.mit;
maintainers = with maintainers; [ thiagokokada ];
};
}

View file

@ -20,6 +20,8 @@ self: super: with self; {
aardwolf = callPackage ../development/python-modules/aardwolf { };
about-time = callPackage ../development/python-modules/about-time { };
absl-py = callPackage ../development/python-modules/absl-py { };
accessible-pygments = callPackage ../development/python-modules/accessible-pygments { };