{ lib, fetchFromGitHub, buildPythonPackage, setuptools, pythonOlder, # Python deps uplc, graphlib-backport, ordered-set, }: buildPythonPackage rec { pname = "pluthon"; version = "1.0.0"; format = "pyproject"; src = fetchFromGitHub { owner = "OpShin"; repo = "pluthon"; rev = version; hash = "sha256-IYpkb/RXRu53HoeVKik7Jog5FyXwrWItrxSla9dN0s4="; }; propagatedBuildInputs = [ setuptools uplc ordered-set ] ++ lib.optional (pythonOlder "3.9") graphlib-backport; pythonImportsCheck = [ "pluthon" ]; meta = with lib; { description = "Pluto-like programming language for Cardano Smart Contracts in Python"; homepage = "https://github.com/OpShin/pluthon"; license = licenses.mit; maintainers = with maintainers; [ t4ccer ]; }; }