forked from mirrors/nixpkgs
Add pythonPackages.ntplib, needed for dd-agent update.
(cherry picked from commit 3e73b5888e
)
This commit is contained in:
parent
88de70ebd4
commit
20c4d9cade
|
@ -6334,6 +6334,18 @@ let
|
|||
};
|
||||
};
|
||||
|
||||
ntplib = buildPythonPackage rec {
|
||||
name = "ntplib-0.3.2";
|
||||
src = pkgs.fetchurl {
|
||||
url = https://pypi.python.org/packages/source/n/ntplib/ntplib-0.3.2.tar.gz;
|
||||
md5 = "0f386dc00c0056ac4d77af0b4c21bb8e";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Python NTP library";
|
||||
};
|
||||
};
|
||||
|
||||
numexpr = buildPythonPackage rec {
|
||||
version = "2.4";
|
||||
name = "numexpr-${version}";
|
||||
|
|
Loading…
Reference in a new issue