Enhance Nix package definitions by adding new packages for inputs and steam-python, updating build inputs for colordle and dosage, and improving installation scripts. Notable changes include the addition of desktop and metainfo files for colordle, and ensuring proper GResource handling in dosage.
This commit is contained in:
60
pkgs_wip/steam.nix
Normal file
60
pkgs_wip/steam.nix
Normal file
@@ -0,0 +1,60 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
callPackage,
|
||||
setuptools,
|
||||
wheel,
|
||||
six,
|
||||
pycryptodomex,
|
||||
requests,
|
||||
urllib3,
|
||||
vdf,
|
||||
gevent,
|
||||
protobuf,
|
||||
cachetools,
|
||||
cryptography,
|
||||
gevent-eventemitter,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "steam-python";
|
||||
version = "1.4.4";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ValvePython";
|
||||
repo = "steam";
|
||||
rev = version;
|
||||
hash = "sha256-OY04GsX3KMPvpsQl8sUurzFyJu+JKpES8B0iD6Z5uyw=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
wheel
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
six
|
||||
pycryptodomex
|
||||
requests
|
||||
urllib3
|
||||
vdf
|
||||
gevent
|
||||
protobuf
|
||||
cachetools
|
||||
cryptography
|
||||
gevent-eventemitter
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"steam"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Python package for interacting with Steam";
|
||||
homepage = "https://github.com/ValvePython/steam";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ CaptainJawZ ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user