jdcal: init at 1.0

a dependency of openpyxl
This commit is contained in:
Leroy Hopson 2015-06-20 12:47:05 +12:00
parent 5bb9988ce9
commit 9b623def11

View file

@ -3446,6 +3446,26 @@ let
};
};
jdcal = buildPythonPackage rec {
version = "1.0";
name = "jdcal-${version}";
src = pkgs.fetchFromGitHub {
owner = "phn";
repo = "jdcal";
rev = "v${version}";
sha256 = "0jjgrrylraqzk3n97hay4gj00ky6vlvkfaapfgqlbcxyq30j24vq";
};
meta = {
description = "A module containing functions for converting between Julian dates and calendar dates";
homepage = "https://github.com/phn/jdcal";
license = licenses.bsd2;
maintainers = with maintainers; [ lihop ];
platforms = platforms.all;
};
};
jsonwatch = buildPythonPackage rec {
name = "jsonwatch-0.2.0";