15 buildPythonPackage rec {
19 src = fetchFromGitHub {
20 owner = "monero-ecosystem";
21 repo = "monero-python";
23 hash = "sha256-WIF3pFBOLgozYTrQHLzIRgSlT3dTZTe+7sF/dVjVdTo=";
27 substituteInPlace requirements.txt \
28 --replace 'pynacl~=1.4' 'pynacl>=1.4' \
29 --replace 'ipaddress' ""
32 pythonImportsCheck = [ "monero" ];
34 propagatedBuildInputs = [
43 nativeCheckInputs = [ pytestCheckHook pytest-cov responses ];
46 description = "Comprehensive Python module for handling Monero";
47 homepage = "https://github.com/monero-ecosystem/monero-python";
48 license = licenses.bsd3;
49 maintainers = with maintainers; [ prusnak ];