about summary refs log tree commit diff
path: root/pkgs/development/python-modules/holidays/default.nix
blob: eeaf449971b87b50f04e344849b9cb783514ed55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi, six, dateutil, convertdate }:

buildPythonPackage rec {
  pname = "holidays";
  version = "0.10.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1dx39krafb6cdnd7h5vgwmw4y075s6k3d31a6vhwvqhmdig3294h";
  };

  propagatedBuildInputs = [ six dateutil convertdate ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/dr-prodigy/python-holidays";
    description = "Generate and work with holidays in Python";
    license = licenses.mit;
    maintainers = with maintainers; [ jluttine ];
  };
}