1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "shippai"; 5 # Please make sure that vdirsyncer still builds if you update this package. 6 version = "0.3.2"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "0r6iwvmay8ygn2m15pyjrk9am4mfpk7rkf0lcbcb15pnabixlyzj"; 11 }; 12 13 meta = with lib; { 14 description = "Use Rust failures as Python exceptions"; 15 homepage = "https://github.com/untitaker/shippai"; 16 license = licenses.mit; 17 maintainers = with maintainers; [ gebner ]; 18 }; 19}