Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / ntplib / default.nix
blob399d27695ad1b291575e3f100d572c177ed8d945
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "ntplib";
8   version = "0.4.0";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "899d8fb5f8c2555213aea95efca02934c7343df6ace9d7628a5176b176906267";
13   };
15   # Require networking
16   doCheck = false;
18   meta = with lib; {
19     description = "Python NTP library";
20     homepage = "http://code.google.com/p/ntplib/";
21     license = licenses.mit;
22   };