Merge pull request #311584 from RaghavSood/cramjam/2.8.3

python3Packages.cramjam: 2.8.2 -> 2.8.3
This commit is contained in:
Dmitry Kalinkin
2024-05-15 00:23:19 -04:00
committed by GitHub
@@ -1,30 +1,31 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, rustPlatform
, stdenv
, libiconv
, hypothesis
, numpy
, pytest-xdist
, pytestCheckHook
{
lib,
buildPythonPackage,
fetchFromGitHub,
rustPlatform,
stdenv,
libiconv,
hypothesis,
numpy,
pytest-xdist,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "cramjam";
version = "2.8.2";
version = "2.8.3";
pyproject = true;
src = fetchFromGitHub {
owner = "milesgranger";
repo = "pyrus-cramjam";
rev = "refs/tags/v${version}";
hash = "sha256-BO35s7qOW4+l968I9qn9L1m2BtgRFNYUNlA7W1sctT8=";
hash = "sha256-1KD5/oZjfdXav1ZByQoyyiDSzbmY4VJsSJg/FtUFdDE=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
hash = "sha256-YWXf+ZDJLq6VxI5sa9G63fCPz2377BVSTmPM0mQSu8M=";
hash = "sha256-Bp7EtyuLdLUfU3yvouNVE42klfqYt9QOwt+iGe521yI=";
};
buildAndTestSubdir = "cramjam-python";
@@ -43,17 +44,11 @@ buildPythonPackage rec {
pytestCheckHook
];
pytestFlagsArray = [
"cramjam-python/tests"
];
pytestFlagsArray = [ "cramjam-python/tests" ];
disabledTestPaths = [
"cramjam-python/benchmarks/test_bench.py"
];
disabledTestPaths = [ "cramjam-python/benchmarks/test_bench.py" ];
pythonImportsCheck = [
"cramjam"
];
pythonImportsCheck = [ "cramjam" ];
meta = with lib; {
description = "Thin Python bindings to de/compression algorithms in Rust";