stevenblack-blocklist: 3.15.5 -> 3.15.8 (#372042)
[NixPkgs.git] / pkgs / development / python-modules / ntplib / default.nix
blob9c388e0437d38b8ca9a55a6346f27559f9078c0c
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "ntplib";
9   version = "0.4.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "899d8fb5f8c2555213aea95efca02934c7343df6ace9d7628a5176b176906267";
15   };
17   # Require networking
18   doCheck = false;
20   meta = with lib; {
21     description = "Python NTP library";
22     homepage = "http://code.google.com/p/ntplib/";
23     license = licenses.mit;
24   };