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
59
pkgs/development/python-modules/cramjam/default.nix
Normal file
59
pkgs/development/python-modules/cramjam/default.nix
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
, stdenv
|
||||
, libiconv
|
||||
, brotli
|
||||
, lz4
|
||||
, memory_profiler
|
||||
, numpy
|
||||
, pytest-benchmark
|
||||
, pytestCheckHook
|
||||
, python-snappy
|
||||
, zstd
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "cramjam";
|
||||
version = "2.4.0";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "milesgranger";
|
||||
repo = "pyrus-cramjam";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-00KvbiTf8PxYWljLKTRZmPIAbb+PnBleDM4p0AzZhHw=";
|
||||
};
|
||||
|
||||
cargoDeps = rustPlatform.fetchCargoTarball {
|
||||
inherit src;
|
||||
sha256 = "sha256-4y/jeEZjVUbaXtBx5l3Hrbnj3iNYX089K4xexRP+5v0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with rustPlatform; [
|
||||
cargoSetupHook
|
||||
maturinBuildHook
|
||||
];
|
||||
buildInputs = lib.optional stdenv.isDarwin libiconv;
|
||||
|
||||
checkInputs = [
|
||||
brotli
|
||||
lz4
|
||||
memory_profiler
|
||||
numpy
|
||||
pytest-benchmark
|
||||
pytestCheckHook
|
||||
python-snappy
|
||||
zstd
|
||||
];
|
||||
pytestFlagsArray = [ "--benchmark-disable" ];
|
||||
pythonImportsCheck = [ "cramjam" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Thin Python bindings to de/compression algorithms in Rust";
|
||||
homepage = "https://github.com/milesgranger/pyrus-cramjam";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ veprbl ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue