mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python310Packages.pfzy: init at 0.3.4
This commit is contained in:
parent
785633131d
commit
a39a8882c2
36
pkgs/development/python-modules/pfzy/default.nix
Normal file
36
pkgs/development/python-modules/pfzy/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, poetry-core
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pfzy";
|
||||
version = "0.3.4";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kazhala";
|
||||
repo = "pfzy";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-+Ba/yLUfT0SPPAJd+pKyjSvNrVpEwxW3xEKFx4JzpYk=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pfzy"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python port of the fzy fuzzy string matching algorithm";
|
||||
homepage = "https://github.com/kazhala/pfzy";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -7376,6 +7376,8 @@ self: super: with self; {
|
||||
|
||||
pexpect = callPackage ../development/python-modules/pexpect { };
|
||||
|
||||
pfzy = callPackage ../development/python-modules/pfzy { };
|
||||
|
||||
pg8000 = callPackage ../development/python-modules/pg8000 { };
|
||||
|
||||
pgcli = callPackage ../development/python-modules/pgcli { };
|
||||
|
Loading…
Reference in New Issue
Block a user