uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 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 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue