diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2019-01-11 11:26:28 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2019-03-17 23:15:57 -0400 |
commit | 5591fc4f384069010f084886e14a6680e2d34df9 (patch) | |
tree | 3d12411eb41ff7f7d7e3b1ba98959291c62e3d0c /gnu | |
parent | 4caf37b0a7d3a3969795cd1364dda7229ea8ab04 (diff) | |
download | guix-5591fc4f384069010f084886e14a6680e2d34df9.tar.gz guix-5591fc4f384069010f084886e14a6680e2d34df9.zip |
gnu: Add python-jdcal.
* gnu/packages/python.scm (python-jdcal): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 687e9cbd7e..47ac53e2a1 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1788,6 +1788,34 @@ version numbers.") (define-public python2-vcversioner (package-with-python2 python-vcversioner)) +(define-public python-jdcal + (package + (name "python-jdcal") + (version "1.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "jdcal" version)) + (sha256 + (base32 + "1ja6j2xq97bsl6rv09mhdx7n0xnrsfx0mj5xqza0mxghqmkm02pa")))) + (build-system python-build-system) + (arguments + `(#:phases (modify-phases %standard-phases + (replace 'check + (lambda _ + (invoke "pytest")))))) + (native-inputs + `(("python-pytest" ,python-pytest))) + (home-page "https://github.com/phn/jdcal") + (synopsis "Functions to convert between Julian dates Gregorian dates") + (description "This Python library provides functions for converting +between Julian dates and Gregorian dates.") + (license license:bsd-2))) + +(define-public python2-jdcal + (package-with-python2 python-jdcal)) + (define-public python-jsonschema (package (name "python-jsonschema") |