depot/third_party/nixpkgs/pkgs/development/python-modules/wn/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

46 lines
881 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
pythonOlder,
flit-core,
requests,
tomli,
}:
buildPythonPackage rec {
pname = "wn";
version = "0.9.5";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-muYuDmYH9W5j6euDYJMMgzfsxE6eBIhDCqH6P7nFG+Q=";
};
nativeBuildInputs = [ flit-core ];
propagatedBuildInputs = [
requests
tomli
];
nativeCheckInputs = [ pytestCheckHook ];
preCheck = ''
export HOME=$(mktemp -d)
'';
pythonImportsCheck = [ "wn" ];
meta = with lib; {
description = "A modern, interlingual wordnet interface for Python";
homepage = "https://github.com/goodmami/wn";
changelog = "https://github.com/goodmami/wn/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ zendo ];
};
}