Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / about-time / default.nix
blobd705bf5a3e15c6ea9267382b4920d624b878740c
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 }:
6 buildPythonPackage rec {
7   pname = "about-time";
8   version = "4.2.1";
9   format = "setuptools";
11   # PyPi release does not contain test files, but the repo has no release tags,
12   # so while having no tests is not ideal, follow the PyPi releases for now
13   # TODO: switch to fetchFromGitHub once this issue is fixed:
14   # https://github.com/rsalmei/about-time/issues/15
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-alOIYtM85n2ZdCnRSZgxDh2/2my32bv795nEcJhH/s4=";
18   };
20   doCheck = false;
22   pythonImportsCheck = [
23     "about_time"
24   ];
26   meta = with lib; {
27     description = "A cool helper for tracking time and throughput of code blocks, with beautiful human friendly renditions";
28     homepage = "https://github.com/rsalmei/about-time";
29     license = licenses.mit;
30     maintainers = with maintainers; [ thiagokokada ];
31   };