Skip to content

Commit

Permalink
python312Packages.pyphen: 0.16.0 -> 0.17.0 (#352152)
Browse files Browse the repository at this point in the history
  • Loading branch information
NickCao authored Nov 12, 2024
2 parents f93ca1b + 7652fcf commit fc26933
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions pkgs/development/python-modules/pyphen/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,24 @@
lib,
buildPythonPackage,
fetchPypi,
flit,
flit-core,
pytestCheckHook,
pythonOlder,
}:

buildPythonPackage rec {
pname = "pyphen";
version = "0.16.0";
format = "pyproject";
version = "0.17.0";
pyproject = true;

disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";

src = fetchPypi {
inherit pname version;
hash = "sha256-LABrPd8HLJVxq5dgbZqzwmqS6s7UwNWf0dJpiPMI9BM=";
hash = "sha256-HROs0c43o4TXYSlUrmx4AbtMUxbaDiuTeyEnunAqPaQ=";
};

nativeBuildInputs = [ flit ];

preCheck = ''
sed -i '/addopts/d' pyproject.toml
'';
build-system = [ flit-core ];

nativeCheckInputs = [ pytestCheckHook ];

Expand Down

0 comments on commit fc26933

Please sign in to comment.