python.pkgs.pathspec: 0.5.2 -> 0.5.3

This commit is contained in:
Frederik Rietdijk 2017-09-06 18:42:51 +02:00
parent 71670376bc
commit e4b94fa60f
2 changed files with 23 additions and 17 deletions

View File

@ -0,0 +1,22 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "pathspec";
version = "0.5.3";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "54478a66a360f4ebe4499c9235e4206fca5dec837b8e272d1ce37e0a626cc64d";
};
meta = {
description = "Utility library for gitignore-style pattern matching of file paths";
homepage = "https://github.com/cpburnz/python-path-specification";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ copumpkin ];
};
}

View File

@ -7136,23 +7136,7 @@ in {
};
};
pathspec = buildPythonPackage rec {
pname = "pathspec";
version = "0.5.2";
name = "${pname}-${version}";
src = self.fetchPypi {
inherit pname version;
sha256 = "f9fdf4408f4adb30e9f507f61d3a41c968e9c6e6c519d4bbd2a189627b5e86f0";
};
meta = {
description = "Utility library for gitignore-style pattern matching of file paths";
homepage = "https://github.com/cpburnz/python-path-specification";
license = licenses.mpl20;
maintainers = with maintainers; [ copumpkin ];
};
};
pathspec = callPackage ../development/python-modules/pathspec { };
pathtools = buildPythonPackage rec {
name = "pathtools-${version}";