Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 580 B view raw
1{ lib, buildPythonPackage, fetchPypi 2, setuptools_scm 3, six, pytz, jaraco_functools }: 4 5buildPythonPackage rec { 6 pname = "tempora"; 7 version = "1.14"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "4951da790bd369f718dbe2287adbdc289dc2575a09278e77fad6131bcfe93097"; 12 }; 13 14 doCheck = false; 15 16 buildInputs = [ setuptools_scm ]; 17 18 propagatedBuildInputs = [ six pytz jaraco_functools ]; 19 20 meta = with lib; { 21 description = "Objects and routines pertaining to date and time"; 22 homepage = https://github.com/jaraco/tempora; 23 license = licenses.mit; 24 }; 25}