5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
46 lines
970 B
Nix
46 lines
970 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, msgpack
|
|
, oslo-utils
|
|
, oslotest
|
|
, pbr
|
|
, pytz
|
|
, stestr
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "oslo-serialization";
|
|
version = "5.2.0";
|
|
|
|
src = fetchPypi {
|
|
pname = "oslo.serialization";
|
|
inherit version;
|
|
hash = "sha256-nPAw1hpszh9Hpi1AUPXoPhvRoQGKxnG7GTruB9Fb28I=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# only a small portion of the listed packages are actually needed for running the tests
|
|
# so instead of removing them one by one remove everything
|
|
rm test-requirements.txt
|
|
'';
|
|
|
|
nativeBuildInputs = [ pbr ];
|
|
|
|
propagatedBuildInputs = [ msgpack oslo-utils pytz ];
|
|
|
|
nativeCheckInputs = [ oslotest stestr ];
|
|
|
|
checkPhase = ''
|
|
stestr run
|
|
'';
|
|
|
|
pythonImportsCheck = [ "oslo_serialization" ];
|
|
|
|
meta = with lib; {
|
|
description = "Oslo Serialization library";
|
|
homepage = "https://github.com/openstack/oslo.serialization";
|
|
license = licenses.asl20;
|
|
maintainers = teams.openstack.members;
|
|
};
|
|
}
|