Merge pull request #283271 from fabaff/msgspec-bump

python311Packages.msgspec: 0.18.5 -> 0.18.6
This commit is contained in:
Fabian Affolter 2024-01-23 23:53:21 +01:00 committed by GitHub
commit 86164d24ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,22 +4,27 @@
, msgpack
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "msgspec";
version = "0.18.5";
format = "setuptools";
version = "0.18.6";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "jcrist";
repo = pname;
repo = "msgspec";
rev = "refs/tags/${version}";
hash = "sha256-BcENL1vPCspzYdAHicC5AHs/7xZPWf+Yys37vKgbris=";
hash = "sha256-xqtV60saQNINPMpOnZRSDnicedPSPBUQwPSE5zJGrTo=";
};
nativeBuildInputs = [
setuptools
];
# Requires libasan to be accessible
doCheck = false;