2018-08-03 03:40:34 -07:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "shippai";
|
|
|
|
# Please make sure that vdirsyncer still builds if you update this package.
|
2018-12-24 09:37:21 -08:00
|
|
|
version = "0.3.2";
|
2018-08-03 03:40:34 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-12-24 09:37:21 -08:00
|
|
|
sha256 = "0r6iwvmay8ygn2m15pyjrk9am4mfpk7rkf0lcbcb15pnabixlyzj";
|
2018-08-03 03:40:34 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Use Rust failures as Python exceptions";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/untitaker/shippai";
|
2018-08-03 03:40:34 -07:00
|
|
|
license = licenses.mit;
|
2018-08-03 04:18:41 -07:00
|
|
|
maintainers = with maintainers; [ gebner ];
|
2018-08-03 03:40:34 -07:00
|
|
|
};
|
|
|
|
}
|