commix: add helper files

This commit is contained in:
Fabian Affolter 2023-01-23 22:12:19 +01:00
parent d3cd2fdbaf
commit e8499e7be5

View file

@ -15,6 +15,12 @@ python3.pkgs.buildPythonApplication rec {
hash = "sha256-QdhJp7oUqOY8Z36haIrHgP4hVGaFXlOxNVg1ams7uhg=";
};
postInstall = ''
# Helper files are not handled by setup.py
mkdir -p $out/${python3.sitePackages}/src/txt
install -vD src/txt/* $out/${python3.sitePackages}/src/txt/
'';
# Project has no tests
doCheck = false;