Add pyproject.toml

This commit is contained in:
Joeri Exelmans 2023-03-01 19:03:15 +01:00
parent 8e6a90ef01
commit b2d7c5b4b6
4 changed files with 35 additions and 1 deletions

9
default.nix Normal file
View file

@ -0,0 +1,9 @@
with import <nixpkgs> {};
with pkgs.python3Packages;
buildPythonPackage {
name = "xopp2py";
src = ./.;
format = "pyproject"; # tell Nix to use pyproject.toml
propagatedBuildInputs = [ hatchling ];
}