54d5290d0a
lastFile:flake.nix
38 lines
712 B
Nix
38 lines
712 B
Nix
{
|
|
buildPythonPackage,
|
|
pythonRelaxDepsHook,
|
|
flit-core,
|
|
fetchFromGitHub,
|
|
mkAssets,
|
|
pandas,
|
|
}:
|
|
buildPythonPackage (finalAttrs: {
|
|
|
|
pname = "erpnext_thailand";
|
|
version = "1.0.2";
|
|
format = "pyproject";
|
|
|
|
src =
|
|
let
|
|
erpnext_thailand_src = fetchFromGitHub {
|
|
owner = "ecosoft-frappe";
|
|
repo = "erpnext_thailand";
|
|
rev = "69ebd41b6e616a96677f79f57019a4bcd310b638";
|
|
hash = "sha256-72acMrJQKEQKp/u3gcUSBZ6mYbAKCD240j2zMARwUEc=";
|
|
};
|
|
in
|
|
mkAssets {
|
|
src = erpnext_thailand_src;
|
|
inherit (finalAttrs) pname version;
|
|
yarnHash = "";
|
|
};
|
|
|
|
dependencies = [ pandas ];
|
|
|
|
nativeBuildInputs = [
|
|
pythonRelaxDepsHook
|
|
flit-core
|
|
];
|
|
|
|
})
|