Loading pkgs/development/python-modules/repath/default.nix 0 → 100644 +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 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading Loading
pkgs/development/python-modules/repath/default.nix 0 → 100644 +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 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading