python3Packages.repath: init at 0.9.0

This commit is contained in:
heyimnova 2023-05-05 19:32:45 +01:00 committed by Anderson Torres
parent ca426678ab
commit 9145423abe
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ 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 ];
};
}

View File

@ -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 { };