pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / python-modules / py-expression-eval / default.nix
blobf184c025e218e85e71a5bb80c751b8155d8a9c2d
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5 }:
7 buildPythonPackage rec {
8   pname = "py-expression-eval";
9   version = "0.3.14";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "axiacore";
14     repo = "py-expression-eval";
15     rev = "v${version}";
16     sha256 = "YxhZd8V6ofphcNdcbBbrT5mc37O9c6W1mfhsvFVC+KM=";
17   };
19   meta = with lib; {
20     homepage = "https://github.com/AxiaCore/py-expression-eval/";
21     description = "Python Mathematical Expression Evaluator";
22     platforms = platforms.linux;
23     license = licenses.mit;
24     maintainers = with maintainers; [ cynerd ];
25   };