simpleeval: init at 0.9.5
This commit is contained in:
16
pkgs/development/python-modules/simpleeval/default.nix
Normal file
16
pkgs/development/python-modules/simpleeval/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user