about summary refs log tree commit diff
path: root/pkgs/development/python-modules/holidays/default.nix
blob: 3909651ff26fd51d01c932f29f5eceb75319f927 (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.11";

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

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