mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
python.pkgs.pathspec: 0.5.2 -> 0.5.3
This commit is contained in:
parent
71670376bc
commit
e4b94fa60f
22
pkgs/development/python-modules/pathspec/default.nix
Normal file
22
pkgs/development/python-modules/pathspec/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -7136,23 +7136,7 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
pathspec = buildPythonPackage rec {
|
pathspec = callPackage ../development/python-modules/pathspec { };
|
||||||
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 ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
pathtools = buildPythonPackage rec {
|
pathtools = buildPythonPackage rec {
|
||||||
name = "pathtools-${version}";
|
name = "pathtools-${version}";
|
||||||
|
Loading…
Reference in New Issue
Block a user