1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "shippai";
5 # Please make sure that vdirsyncer still builds if you update this package.
6 version = "0.2.3";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "1ppwywzg4d12h658682ssmingm6ls6a96p4ak26i2w9d4lf8pfsc";
11 };
12
13 meta = with stdenv.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}