depot/third_party/nixpkgs/pkgs/development/python-modules/yangson/default.nix
Default email 81047829ea Project import generated by Copybara.
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
2022-02-10 15:34:41 -05:00

44 lines
744 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, setuptools-scm
, pyxb
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "yangson";
version = "1.4.12";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Dx7jxhO3aGCT1Mq6QDsvZLDcC7EY3dX2ltM0tLxSW8Y=";
};
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
pyxb
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"yangson"
];
meta = with lib; {
description = "Library for working with data modelled in YANG";
homepage = "https://github.com/CZ-NIC/yangson";
license = with licenses; [
gpl3Plus
lgpl3Plus
];
maintainers = with maintainers; [ hexa ];
};
}