Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 20 lines 547 B view raw
1{ stdenv, buildPythonPackage, fetchPypi , six, dateutil }: 2 3buildPythonPackage rec { 4 pname = "holidays"; 5 version = "0.9.12"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "3182c4a6fef8d01a829468362ace9c3bba7645873610535fef53454dbb4ea092"; 10 }; 11 12 propagatedBuildInputs = [ six dateutil ]; 13 14 meta = with stdenv.lib; { 15 homepage = https://github.com/dr-prodigy/python-holidays; 16 description = "Generate and work with holidays in Python"; 17 license = licenses.mit; 18 maintainers = with maintainers; [ jluttine ]; 19 }; 20}