mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-17 03:58:22 +00:00
pythonPackages.holidays: fix build by adding korean-lunar-calendar dependency
This commit is contained in:
parent
cf5a892a24
commit
9fb14d899d
@ -1,4 +1,11 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, six, dateutil, convertdate }:
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, convertdate
|
||||
, dateutil
|
||||
, korean-lunar-calendar
|
||||
, six
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "holidays";
|
||||
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user