fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
37 lines
811 B
Nix
37 lines
811 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "py-ubjson";
|
|
version = "0.16.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Iotic-Labs";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1frn97xfa88zrfmpnvdk1pc03yihlchhph99bhjayvzlfcrhm5v3";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
disabledTests = [
|
|
# https://github.com/Iotic-Labs/py-ubjson/issues/18
|
|
"test_recursion"
|
|
];
|
|
|
|
pytestFlagsArray = [ "test/test.py" ];
|
|
|
|
pythonImportsCheck = [ "ubjson" ];
|
|
|
|
meta = with lib; {
|
|
description = "Universal Binary JSON draft-12 serializer for Python";
|
|
homepage = "https://github.com/Iotic-Labs/py-ubjson";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|