Add nix flake and package
This commit is contained in:
parent
4f9fcf589c
commit
3d8667781d
3 changed files with 94 additions and 0 deletions
16
package.nix
Normal file
16
package.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
buildPythonPackage,
|
||||
setuptools,
|
||||
pyside6
|
||||
}: buildPythonPackage rec {
|
||||
pname = "leek";
|
||||
version = "0.0.1";
|
||||
pyproject = true;
|
||||
|
||||
src = ./.;
|
||||
|
||||
dependencies = [
|
||||
pyside6
|
||||
setuptools
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue