pythonPackages.shippai: init at 0.2.3

This commit is contained in:
Gabriel Ebner 2018-08-03 12:40:34 +02:00
parent 29387fbbe9
commit 0a519ad6df
2 changed files with 22 additions and 1 deletions

View File

@ -0,0 +1,19 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "shippai";
# Please make sure that vdirsyncer still builds if you update this package.
version = "0.2.3";
src = fetchPypi {
inherit pname version;
sha256 = "1ppwywzg4d12h658682ssmingm6ls6a96p4ak26i2w9d4lf8pfsc";
};
meta = with stdenv.lib; {
description = "Use Rust failures as Python exceptions";
homepage = https://github.com/untitaker/shippai;
license = licenses.mit;
maintainer = with maintainers; [ gebner ];
};
}

View File

@ -422,7 +422,7 @@ in {
};
pykerberos = callPackage ../development/python-modules/pykerberos { };
pymatgen = callPackage ../development/python-modules/pymatgen { };
pynisher = callPackage ../development/python-modules/pynisher { };
@ -12449,6 +12449,8 @@ in {
};
};
shippai = callPackage ../development/python-modules/shippai {};
simanneal = callPackage ../development/python-modules/simanneal { };
simplebayes = buildPythonPackage rec {