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