26 lines
580 B
Nix
26 lines
580 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, setuptools_scm
|
|
, six, pytz, jaraco_functools }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tempora";
|
|
version = "1.13";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "4848df474c9d7ad9515fbeaadc88e48843176b4b90393652156ccff613bcaeb1";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
buildInputs = [ setuptools_scm ];
|
|
|
|
propagatedBuildInputs = [ six pytz jaraco_functools ];
|
|
|
|
meta = with lib; {
|
|
description = "Objects and routines pertaining to date and time";
|
|
homepage = https://github.com/jaraco/tempora;
|
|
license = licenses.mit;
|
|
};
|
|
}
|