nixpkgs/pkgs/development/python-modules/takethetime/default.nix
huantian 3f2965dc57
takethetime: fetch from PyPI and disable checks (#233694)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2023-06-07 11:30:08 +02:00

31 lines
638 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "takethetime";
version = "0.3.1";
src = fetchPypi {
pname = "TakeTheTime";
inherit version;
sha256 = "sha256-2+MEU6G1lqOPni4/qOGtxa8tv2RsoIN61cIFmhb+L/k=";
};
disabled = pythonOlder "3.6";
# all tests are timing dependent
doCheck = false;
pythonImportsCheck = [ "takethetime" ];
meta = with lib; {
description = "Simple time taking library using context managers";
homepage = "https://github.com/ErikBjare/TakeTheTime";
maintainers = with maintainers; [ huantian ];
license = licenses.mit;
};
}