mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Add pythonPackages.ntplib, needed for dd-agent update.
This commit is contained in:
parent
96904915d9
commit
3e73b5888e
1 changed files with 12 additions and 0 deletions
|
@ -6016,6 +6016,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