pythonPackages.holidays: init at 0.9.11

This commit is contained in:
Jaakko Luttinen 2019-10-25 07:57:37 +03:00 committed by Jon
parent b74a6b11a6
commit 0109d6587a
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,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 ];
};
}

View file

@ -678,6 +678,8 @@ in {
hocr-tools = callPackage ../development/python-modules/hocr-tools { };
holidays = callPackage ../development/python-modules/holidays { };
holoviews = callPackage ../development/python-modules/holoviews { };
hoomd-blue = toPythonModule (callPackage ../development/python-modules/hoomd-blue {