Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / rnc2rng / default.nix
blob90bfc37266f808c2365bd040b2c86dc5727d7e75
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , python
5 , rply
6 }:
8 buildPythonPackage rec {
9   pname = "rnc2rng";
10   version = "2.7.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "sha256-3Z/7vWnQnLB+bnqM+A/ShwP9xtO5Am+HVrScvjMUZ2s=";
16   };
18   propagatedBuildInputs = [ rply ];
20   checkPhase = "${python.interpreter} test.py";
22   meta = with lib; {
23     homepage = "https://github.com/djc/rnc2rng";
24     description = "Compact to regular syntax conversion library for RELAX NG schemata";
25     mainProgram = "rnc2rng";
26     license = licenses.mit;
27     maintainers = with maintainers; [ bcdarwin ];
28   };