Commit 9145423a authored by heyimnova's avatar heyimnova Committed by Anderson Torres
Browse files

python3Packages.repath: init at 0.9.0

parent ca426678
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
{ lib
, python3
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "repath";
  version = "0.9.0";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-gpITm6xqDkP9nXBgXU6NrrJdRmcuSE7TGiTHzgrvD7c=";
  };

  propagatedBuildInputs = with python3.pkgs; [
    six
  ];

  pythonImportsCheck = [
    "repath"
  ];

  meta = {
    description = "A port of the node module path-to-regexp to Python";
    homepage = "https://github.com/nickcoutsos/python-repath";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.heyimnova ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -10334,6 +10334,8 @@ self: super: with self; {

  reparser = callPackage ../development/python-modules/reparser { };

  repath = callPackage ../development/python-modules/repath { };

  repeated-test = callPackage ../development/python-modules/repeated-test { };

  repocheck = callPackage ../development/python-modules/repocheck { };