mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
simpleeval: init at 0.9.5
This commit is contained in:
parent
8e5b630b49
commit
4518b02c8b
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;
|
||||
};
|
||||
}
|
@ -360,6 +360,8 @@ in {
|
||||
|
||||
rhpl = if !isPy3k then callPackage ../development/python-modules/rhpl {} else throw "rhpl not supported for interpreter ${python.executable}";
|
||||
|
||||
simpleeval = callPackage ../development/python-modules/simpleeval { };
|
||||
|
||||
sip = callPackage ../development/python-modules/sip { };
|
||||
|
||||
tables = callPackage ../development/python-modules/tables {
|
||||
|
Loading…
Reference in New Issue
Block a user