nixpkgs/pkgs/development/python-modules/py-ubjson/default.nix
2021-05-04 21:47:18 +02:00

33 lines
677 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "py-ubjson";
version = "0.16.1";
src = fetchFromGitHub {
owner = "Iotic-Labs";
repo = pname;
rev = "v${version}";
sha256 = "1frn97xfa88zrfmpnvdk1pc03yihlchhph99bhjayvzlfcrhm5v3";
};
checkInputs = [
pytestCheckHook
];
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 ];
};
}