Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "umalqurra"; 8 version = "0.2"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "719f6a36f908ada1c29dae0d934dd0f1e1f6e3305784edbec23ad719397de678"; 13 }; 14 15 # No tests included 16 doCheck = false; 17 18 # See for license 19 # https://github.com/tytkal/python-hijiri-ummalqura/issues/4 20 meta = with lib; { 21 description = "Date Api that support Hijri Umalqurra calendar"; 22 homepage = "https://github.com/tytkal/python-hijiri-ummalqura"; 23 license = with licenses; [ publicDomain ]; 24 }; 25 26}