depot/third_party/nixpkgs/pkgs/development/python-modules/yangson/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

44 lines
757 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, setuptools-scm
, elementpath
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "yangson";
version = "1.4.19";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-rYUxv3TEdyr2D3UEmmHcJJtlG6gXJnp1c2pez4H13SU=";
};
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
elementpath
];
nativeCheckInputs = [
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; [ ];
};
}