python3Packages.rnc2rng: init at 2.6.4

This commit is contained in:
Ben Darwin 2020-06-09 15:56:05 -04:00 committed by Jon
parent 803ef3f367
commit a113aa5b6b
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib
, buildPythonPackage
, fetchPypi
, python
, rply
}:
buildPythonPackage rec {
pname = "rnc2rng";
version = "2.6.4";
src = fetchPypi {
inherit pname version;
sha256 = "1kmp3iwxxyzjsd47j2sprd47ihhkwhb3yydih3af5bbfq0ibh1w8";
};
propagatedBuildInputs = [ rply ];
checkPhase = "${python.interpreter} test.py";
meta = with lib; {
homepage = "https://github.com/djc/rnc2rng";
description = "Compact to regular syntax conversion library for RELAX NG schemata";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
};
}

View file

@ -5689,6 +5689,8 @@ in {
Pyro5 = callPackage ../development/python-modules/pyro5 { };
rnc2rng = callPackage ../development/python-modules/rnc2rng { };
rope = callPackage ../development/python-modules/rope { };
ropper = callPackage ../development/python-modules/ropper { };