Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 486 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytz 5, nose 6}: 7 8buildPythonPackage rec { 9 pname = "pyRFC3339"; 10 version = "1.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "06jv7ar7lpvvk0dixzwdr3wgm0g1lipxs429s2z7knwwa7hwpf41"; 15 }; 16 17 propagatedBuildInputs = [ pytz ]; 18 buildInputs = [ nose ]; 19 20 meta = with lib; { 21 description = "Generate and parse RFC 3339 timestamps"; 22 homepage = "https://github.com/kurtraschke/pyRFC3339"; 23 license = licenses.mit; 24 }; 25 26}