xopp2py/default.nix

9 lines
No EOL
207 B
Nix

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