Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 445 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "ntplib"; 8 version = "0.3.3"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "c4621b64d50be9461d9bd9a71ba0b4af06fbbf818bbd483752d95c1a4e273ede"; 13 }; 14 15 # Require networking 16 doCheck = false; 17 18 meta = with stdenv.lib; { 19 description = "Python NTP library"; 20 homepage = "http://code.google.com/p/ntplib/"; 21 license = licenses.mit; 22 }; 23 24}