Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / jdcal / default.nix
blobabf5880e80f028f451cd86f9a1ff38f2db972927
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytest
5 }:
7 buildPythonPackage rec {
8   pname = "jdcal";
9   version = "1.4.1";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "472872e096eb8df219c23f2689fc336668bdb43d194094b5cc1707e1640acfc8";
14   };
16   nativeCheckInputs = [ pytest ];
18   checkPhase = ''
19     py.test
20   '';
22   meta = {
23     description = "A module containing functions for converting between Julian dates and calendar dates";
24     homepage = "https://github.com/phn/jdcal";
25     license = lib.licenses.bsd2;
26     maintainers = with lib.maintainers; [ lihop ];
27   };