python3Packages.py-ubjson: init at 0.16.1
This commit is contained in:
parent
9677aba91e
commit
5396cc05d9
|
@ -0,0 +1,32 @@
|
||||||
|
{ 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -5260,6 +5260,8 @@ in {
|
||||||
|
|
||||||
py-air-control-exporter = callPackage ../development/python-modules/py-air-control-exporter { };
|
py-air-control-exporter = callPackage ../development/python-modules/py-air-control-exporter { };
|
||||||
|
|
||||||
|
py-ubjson = callPackage ../development/python-modules/py-ubjson { };
|
||||||
|
|
||||||
py2bit = callPackage ../development/python-modules/py2bit { };
|
py2bit = callPackage ../development/python-modules/py2bit { };
|
||||||
|
|
||||||
py3buddy = toPythonModule (callPackage ../development/python-modules/py3buddy { });
|
py3buddy = toPythonModule (callPackage ../development/python-modules/py3buddy { });
|
||||||
|
|
Loading…
Reference in New Issue