Loading pkgs/development/python-modules/gamble/default.nix +13 −6 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchPypi , fetchFromGitHub , pytestCheckHook , pythonOlder , poetry-core }: buildPythonPackage rec { pname = "gamble"; version = "0.13"; format = "setuptools"; pyproject = true; disabled = pythonOlder "3.7"; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; hash = "sha256-P0w1Q1Kus742Yu/MpqheEbp1+Pt21f163JWZfKJj3SA="; src = fetchFromGitHub { owner = "jpetrucciani"; repo = "gamble"; rev = "refs/tags/${version}"; hash = "sha256-eHosY/JfJr317S7WI8phy7DNHf3cZzs6c5MMfw7yzAE="; }; build-system = [ poetry-core ]; nativeCheckInputs = [ pytestCheckHook ]; Loading Loading
pkgs/development/python-modules/gamble/default.nix +13 −6 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchPypi , fetchFromGitHub , pytestCheckHook , pythonOlder , poetry-core }: buildPythonPackage rec { pname = "gamble"; version = "0.13"; format = "setuptools"; pyproject = true; disabled = pythonOlder "3.7"; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; hash = "sha256-P0w1Q1Kus742Yu/MpqheEbp1+Pt21f163JWZfKJj3SA="; src = fetchFromGitHub { owner = "jpetrucciani"; repo = "gamble"; rev = "refs/tags/${version}"; hash = "sha256-eHosY/JfJr317S7WI8phy7DNHf3cZzs6c5MMfw7yzAE="; }; build-system = [ poetry-core ]; nativeCheckInputs = [ pytestCheckHook ]; Loading