Add nix flake and package

This commit is contained in:
Toast 2024-10-18 13:50:29 +02:00
parent 4f9fcf589c
commit 3d8667781d
3 changed files with 94 additions and 0 deletions

16
package.nix Normal file
View file

@ -0,0 +1,16 @@
{
buildPythonPackage,
setuptools,
pyside6
}: buildPythonPackage rec {
pname = "leek";
version = "0.0.1";
pyproject = true;
src = ./.;
dependencies = [
pyside6
setuptools
];
}