evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / repath / default.nix
blob88eb3ad0c3a2f1951c61a977c1eeff19445c5692
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   six,
6 }:
8 buildPythonPackage rec {
9   pname = "repath";
10   version = "0.9.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-gpITm6xqDkP9nXBgXU6NrrJdRmcuSE7TGiTHzgrvD7c=";
16   };
18   propagatedBuildInputs = [ six ];
20   pythonImportsCheck = [ "repath" ];
22   meta = {
23     description = "Port of the node module path-to-regexp to Python";
24     homepage = "https://github.com/nickcoutsos/python-repath";
25     license = lib.licenses.mit;
26     maintainers = [ lib.maintainers.heyimnova ];
27   };