repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git]
/
pkgs
/
development
/
python-modules
/
ntplib
/
default.nix
blob
be8a370f3f3abd9a8384b487cbf7fb62087028c4
1
{ lib
2
, buildPythonPackage
3
, fetchPypi
4
}:
5
6
buildPythonPackage rec {
7
pname = "ntplib";
8
version = "0.3.4";
9
10
src = fetchPypi {
11
inherit pname version;
12
sha256 = "9fc99f71b14641b31698e4ced3d5f974eec225bfbae089ebe44b5808ba890f71";
13
};
14
15
# Require networking
16
doCheck = false;
17
18
meta = with lib; {
19
description = "Python NTP library";
20
homepage = "http://code.google.com/p/ntplib/";
21
license = licenses.mit;
22
};
23
24
}