py-expression-eval: init with version 0.3.14

This commit is contained in:
Karel Kočí 2023-03-28 17:13:18 +02:00
parent dfcc258054
commit 83352e935e
No known key found for this signature in database
GPG key ID: D83BD732AC2BD828
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib,
buildPythonPackage,
fetchFromGitHub,
}:
buildPythonPackage rec {
pname = "py-expression-eval";
version = "0.3.14";
src = fetchFromGitHub {
owner = "axiacore";
repo = "py-expression-eval";
rev = "v${version}";
sha256 = "YxhZd8V6ofphcNdcbBbrT5mc37O9c6W1mfhsvFVC+KM=";
};
meta = with lib; {
homepage = "https://github.com/AxiaCore/py-expression-eval/";
description = "Python Mathematical Expression Evaluator";
platforms = platforms.linux;
license = licenses.mit;
maintainers = with maintainers; [ cynerd ];
};
}

View file

@ -7144,6 +7144,8 @@ self: super: with self; {
py-eth-sig-utils = callPackage ../development/python-modules/py-eth-sig-utils { };
py-expression-eval = callPackage ../development/python-modules/py-expression-eval { };
nwdiag = callPackage ../development/python-modules/nwdiag { };
oasatelematics = callPackage ../development/python-modules/oasatelematics { };