Metadata-Version: 2.4
Name: py-nickel
Version: 1.10.0
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Summary: Python bindings for the Nickel programming language.
Keywords: configuration,language,nix,nickel
Home-Page: https://nickel-lang.org
Author: The Nickel Team <nickel-lang@protonmail.com>
Author-email: The Nickel Team <nickel-lang@protonmail.com>
License: MIT
Requires-Python: >=3.11
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Source Code, https://github.com/tweag/nickel

# pynickel

Python bindings to use Nickel.

## Install

```shell
pip install py-nickel
```

## Use

```python
import nickel

result = nickel.run("let x = 1 in { y = x + 2 }")
print(result)
# {
#   "y": 3
# }
```

