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