summary refs log tree commit diff
path: root/pkgs/development/python-modules/simpleeval/default.nix
blob: 78dc82bc770466eb5ad5bccaee6a9360884827df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, fetchurl, buildPythonPackage }:

buildPythonPackage rec {
  pname = "simpleeval";
  name = "${pname}-${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;
  };
}