Merge pull request #155420 from jpetrucciani/add_gamble

python3Packages.gamble: init at 0.10
This commit is contained in:
Fabian Affolter 2022-01-23 11:56:29 +01:00 committed by GitHub
commit 968f480509
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "gamble";
version = "0.10";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "1lb5x076blnnz2hj7k92pyq0drbjwsls6pmnabpvyvs4ddhz5w9w";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"gamble"
];
meta = with lib; {
description = "Collection of gambling classes/tools";
homepage = "https://github.com/jpetrucciani/gamble";
license = licenses.mit;
maintainers = with maintainers; [ jpetrucciani ];
};
}

View file

@ -3103,6 +3103,8 @@ in {
pythonPackages = self;
});
gamble = callPackage ../development/python-modules/gamble { };
gaphas = callPackage ../development/python-modules/gaphas { };
garminconnect-aio = callPackage ../development/python-modules/garminconnect-aio { };