40 lines
621 B
Nix
40 lines
621 B
Nix
|
{
|
||
|
buildPythonPackage,
|
||
|
fetchFromGitHub,
|
||
|
|
||
|
taxjar,
|
||
|
gocardless-pro,
|
||
|
plaid-python,
|
||
|
unidecode,
|
||
|
pycountry,
|
||
|
python-youtube,
|
||
|
tweepy,
|
||
|
redisearch,
|
||
|
googlemaps,
|
||
|
python-stdnum,
|
||
|
frappe
|
||
|
}:
|
||
|
buildPythonPackage rec {
|
||
|
pname = "erpnext";
|
||
|
version = "14.24.1";
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "frappe";
|
||
|
repo = pname;
|
||
|
rev = "v${version}";
|
||
|
sha256 = "sha256-djux5iwbwXQBMOg7R79hjy0szgFxd6L9nobsLVS7kEg=";
|
||
|
};
|
||
|
buildInputs = [
|
||
|
taxjar
|
||
|
gocardless-pro
|
||
|
plaid-python
|
||
|
unidecode
|
||
|
pycountry
|
||
|
python-youtube
|
||
|
tweepy
|
||
|
redisearch
|
||
|
googlemaps
|
||
|
python-stdnum
|
||
|
frappe
|
||
|
];
|
||
|
}
|