evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / shippai / default.nix
blobe005b12dded32b387884e72d7facfcec5349b5a5
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage 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";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "0r6iwvmay8ygn2m15pyjrk9am4mfpk7rkf0lcbcb15pnabixlyzj";
16   };
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   };