python3Packages.pure-eval: init at 0.1.0

This commit is contained in:
Gabriel Ebner 2020-08-29 16:40:31 +02:00
parent f210992c92
commit c9bc95d613
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib, buildPythonPackage, fetchFromGitHub, setuptools_scm, toml, pytest }:
buildPythonPackage rec {
pname = "pure_eval";
version = "0.1.0";
src = fetchFromGitHub {
owner = "alexmojaki";
repo = pname;
rev = "v${version}";
sha256 = "1d3gpc9mrmwdk6l87x7ll23vwv6l8l2iqvi63r86j7bj5s8m2ci8";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
buildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ toml ];
checkInputs = [ pytest ];
meta = with lib; {
description = "Safely evaluate AST nodes without side effects";
homepage = "http://github.com/alexmojaki/pure_eval";
license = licenses.mit;
maintainers = with maintainers; [ gebner ];
};
}

View file

@ -1164,6 +1164,8 @@ in {
pure-python-adb-homeassistant = callPackage ../development/python-modules/pure-python-adb-homeassistant { };
pure-eval = callPackage ../development/python-modules/pure-eval {};
purl = callPackage ../development/python-modules/purl { };
pyclipper = callPackage ../development/python-modules/pyclipper { };