summary refs log tree commit diff
path: root/pkgs/development/python-modules/ntplib/default.nix
blob: d6506ae4b4ad7d3fac621586c3638a6fea73fea2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "ntplib";
  version = "0.3.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "c4621b64d50be9461d9bd9a71ba0b4af06fbbf818bbd483752d95c1a4e273ede";
  };

  # Require networking
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Python NTP library";
    homepage = http://code.google.com/p/ntplib/;
    license = licenses.mit;
  };

}