python313Packages.traits: fix build (#373698)
[NixPkgs.git] / pkgs / development / python-modules / rnc2rng / default.nix
blob7b691f638b44e74ca91ed48d440235779bde50a8
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   python,
6   rply,
7 }:
9 buildPythonPackage rec {
10   pname = "rnc2rng";
11   version = "2.7.0";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-3Z/7vWnQnLB+bnqM+A/ShwP9xtO5Am+HVrScvjMUZ2s=";
17   };
19   propagatedBuildInputs = [ rply ];
21   checkPhase = "${python.interpreter} test.py";
23   meta = with lib; {
24     homepage = "https://github.com/djc/rnc2rng";
25     description = "Compact to regular syntax conversion library for RELAX NG schemata";
26     mainProgram = "rnc2rng";
27     license = licenses.mit;
28     maintainers = with maintainers; [ bcdarwin ];
29   };