mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
pythonPackages.wcmatch: init at 8.1.1
This commit is contained in:
parent
bd1307d6bd
commit
90d3003013
32
pkgs/development/python-modules/wcmatch/default.nix
Normal file
32
pkgs/development/python-modules/wcmatch/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, bracex }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "wcmatch";
|
||||
version = "8.1.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-e6CRkflYLoLYZIKb37qwLfRuJqRqME5Xx/5WUvB/KXo=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ bracex ];
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
|
||||
preCheck = ''
|
||||
export HOME=$(mktemp -d)
|
||||
'';
|
||||
|
||||
disabledTests = [
|
||||
"TestTilde"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "wcmatch" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Wilcard File Name matching library";
|
||||
homepage = "https://github.com/facelessuser/wcmatch";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||
};
|
||||
}
|
@ -8492,6 +8492,8 @@ in {
|
||||
|
||||
WazeRouteCalculator = callPackage ../development/python-modules/WazeRouteCalculator { };
|
||||
|
||||
wcmatch = callPackage ../development/python-modules/wcmatch { };
|
||||
|
||||
wcwidth = callPackage ../development/python-modules/wcwidth { };
|
||||
|
||||
weasyprint = callPackage ../development/python-modules/weasyprint { };
|
||||
|
Loading…
Reference in New Issue
Block a user