Skip to content

Commit

Permalink
pythonPackages.holidays: fix build by adding korean-lunar-calendar de…
Browse files Browse the repository at this point in the history
…pendency
  • Loading branch information
risicle committed Sep 14, 2020
1 parent cf5a892 commit 9fb14d8
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions pkgs/development/python-modules/holidays/default.nix
@@ -1,4 +1,11 @@
{ stdenv, buildPythonPackage, fetchPypi, six, dateutil, convertdate }:
{ stdenv
, buildPythonPackage
, fetchPypi
, convertdate
, dateutil
, korean-lunar-calendar
, six
}:

buildPythonPackage rec {
pname = "holidays";
Expand All @@ -9,7 +16,13 @@ buildPythonPackage rec {
sha256 = "839281f2b1ae7ac576da7951472482f6e714818296853107ea861fa60f5013cc";
};

propagatedBuildInputs = [ six dateutil convertdate ];
propagatedBuildInputs = [
convertdate
dateutil
korean-lunar-calendar
six
];
pythonImportsCheck = [ "holidays" ];

meta = with stdenv.lib; {
homepage = "https://github.com/dr-prodigy/python-holidays";
Expand Down

0 comments on commit 9fb14d8

Please sign in to comment.