python3Packages.steamodd: init at 4.23
This commit is contained in:
parent
0d65beb84b
commit
633969f074
2 changed files with 39 additions and 0 deletions
37
pkgs/development/python-modules/steamodd/default.nix
Normal file
37
pkgs/development/python-modules/steamodd/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "steamodd";
|
||||
version = "4.23";
|
||||
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "b95b288a8249937b9183539eef76563a6b1df286a1db04f25141e46d8814eae9";
|
||||
};
|
||||
|
||||
# tests require API key
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"steam.api"
|
||||
"steam.apps"
|
||||
"steam.items"
|
||||
"steam.loc"
|
||||
"steam.remote_storage"
|
||||
"steam.sim"
|
||||
"steam.user"
|
||||
"steam.vdf"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "High level Steam API implementation with low level reusable core";
|
||||
homepage = "https://github.com/Lagg/steamodd";
|
||||
license = lib.licenses.isc;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
|
@ -9947,6 +9947,8 @@ in {
|
|||
|
||||
stdlib-list = callPackage ../development/python-modules/stdlib-list { };
|
||||
|
||||
steamodd = callPackage ../development/python-modules/steamodd { };
|
||||
|
||||
stem = callPackage ../development/python-modules/stem { };
|
||||
|
||||
stestr = callPackage ../development/python-modules/stestr { };
|
||||
|
|
Loading…
Reference in a new issue