10 buildPythonPackage rec {
15 disabled = pythonOlder "3.10";
17 src = fetchFromGitHub {
18 owner = "jpetrucciani";
20 rev = "refs/tags/${version}";
21 hash = "sha256-vzaY5gJ0Ou2ArUJ0kuTWzTeLfiRDhUt/Hxpns9rFiDk=";
24 build-system = [ poetry-core ];
26 nativeCheckInputs = [ pytestCheckHook ];
28 pythonImportsCheck = [ "gamble" ];
31 description = "Collection of gambling classes/tools";
32 homepage = "https://github.com/jpetrucciani/gamble";
33 changelog = "https://github.com/jpetrucciani/gamble/releases/tag/${version}";
34 license = licenses.mit;
35 maintainers = with maintainers; [ jpetrucciani ];