mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
python3Packages.gamble: init at 0.10
This commit is contained in:
parent
e5b47c5c21
commit
4555282bc1
2 changed files with 34 additions and 0 deletions
32
pkgs/development/python-modules/gamble/default.nix
Normal file
32
pkgs/development/python-modules/gamble/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3095,6 +3095,8 @@ in {
|
||||||
pythonPackages = self;
|
pythonPackages = self;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
gamble = callPackage ../development/python-modules/gamble { };
|
||||||
|
|
||||||
gaphas = callPackage ../development/python-modules/gaphas { };
|
gaphas = callPackage ../development/python-modules/gaphas { };
|
||||||
|
|
||||||
garminconnect-aio = callPackage ../development/python-modules/garminconnect-aio { };
|
garminconnect-aio = callPackage ../development/python-modules/garminconnect-aio { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue