summary refs log tree commit diff
path: root/pkgs/development/python-modules/holidays/default.nix
blob: ebde21a482174beee08d45082a8cc74c3c418ca9 (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 }:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "3182c4a6fef8d01a829468362ace9c3bba7645873610535fef53454dbb4ea092";
  };

  propagatedBuildInputs = [ six dateutil ];

  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 ];
  };
}