Skip to content

Commit

Permalink
python3Packages.rnc2rng: init at 2.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bcdarwin authored and Jon committed Jun 12, 2020
1 parent 803ef3f commit a113aa5
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/development/python-modules/rnc2rng/default.nix
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -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 { };
Expand Down

0 comments on commit a113aa5

Please sign in to comment.