python3Packages.repath: init at 0.9.0
This commit is contained in:
parent
ca426678ab
commit
9145423abe
30
pkgs/development/python-modules/repath/default.nix
Normal file
30
pkgs/development/python-modules/repath/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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…
Reference in New Issue
Block a user