mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
pythonPackages.holidays: init at 0.9.11
This commit is contained in:
parent
b74a6b11a6
commit
0109d6587a
20
pkgs/development/python-modules/holidays/default.nix
Normal file
20
pkgs/development/python-modules/holidays/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue