Merge pull request #171781 from fabaff/ttp-templates

python310Packages.ttp-templates: init at 0.1.3
main
Fabian Affolter 2 years ago committed by GitHub
commit 4e9f137405
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 50
      pkgs/development/python-modules/ttp-templates/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -0,0 +1,50 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, netmiko
, pytestCheckHook
, python
, pythonOlder
, ttp
}:
buildPythonPackage rec {
pname = "ttp-templates";
version = "0.1.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "dmulyalin";
repo = "ttp_templates";
rev = version;
hash = "sha256-Qx+z/srYgD67FjXzYrc8xtA99n8shWK7yWj/r/ETN2U=";
};
propagatedBuildInputs = [
ttp
];
checkInputs = [
netmiko
pytestCheckHook
];
pythonImportsCheck = [
"ttp_templates"
];
pytestFlagsArray = [
# The other tests requires data which is no part of the source
"test/test_ttp_templates_methods.py"
"test/test_yang_openconfig_lldp.py"
];
meta = with lib; {
description = "Template Text Parser Templates collections";
homepage = "https://github.com/dmulyalin/ttp_templates";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

@ -10399,6 +10399,8 @@ in {
ttp = callPackage ../development/python-modules/ttp { };
ttp-templates = callPackage ../development/python-modules/ttp-templates { };
tubes = callPackage ../development/python-modules/tubes { };
tunigo = callPackage ../development/python-modules/tunigo { };

Loading…
Cancel
Save