simpleeval: init at 0.9.5

This commit is contained in:
Johannes Bornhold 2017-02-20 20:14:01 +01:00
parent 8e5b630b49
commit 4518b02c8b
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{ lib, fetchurl, buildPythonPackage }:
buildPythonPackage rec {
name = "simpleeval-${version}";
version = "0.9.5";
src = fetchurl {
url = "mirror://pypi/s/simpleeval/${name}.tar.gz";
sha256 = "0sda13bqg9l4j17iczmfanxbzsg6fm9aw8i3crzsjfxx51rwj1i3";
};
meta = {
homepage = "https://github.com/danthedeckie/simpleeval";
description = "A simple, safe single expression evaluator library";
maintainers = with lib.maintainers; [ johbo ];
license = lib.licenses.mit;
};
}

View File

@ -360,6 +360,8 @@ in {
rhpl = if !isPy3k then callPackage ../development/python-modules/rhpl {} else throw "rhpl not supported for interpreter ${python.executable}";
simpleeval = callPackage ../development/python-modules/simpleeval { };
sip = callPackage ../development/python-modules/sip { };
tables = callPackage ../development/python-modules/tables {