about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/py-expression-eval/default.nix
blob: 13797e3adc78434e711bb7b922b93932c468dbdb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib,
  buildPythonPackage,
  fetchFromGitHub,
}:

buildPythonPackage rec {
  pname = "py-expression-eval";
  version = "0.3.14";
  format = "setuptools";

  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 ];
  };
}