mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
b4cd03bc4f
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.6-simpleeval/versions
17 lines
464 B
Nix
17 lines
464 B
Nix
{ lib, fetchPypi, buildPythonPackage }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "simpleeval";
|
|
version = "0.9.8";
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "00fzwbjg98lsnmfzmbgzg1k8q8iqbahcxjnnlhzhb44phrhcxql5";
|
|
};
|
|
meta = {
|
|
homepage = https://github.com/danthedeckie/simpleeval;
|
|
description = "A simple, safe single expression evaluator library";
|
|
maintainers = with lib.maintainers; [ johbo ];
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|