My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/language-data/default.nix

44 lines
801 B

{ lib
, buildPythonApplication
, fetchFromGitHub
, marisa-trie
, poetry-core
, pythonOlder
}:
buildPythonApplication rec {
pname = "language-data";
version = "1.0.1";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "rspeer";
repo = "language_data";
rev = "v${version}";
sha256 = "51TUVHXPHG6ofbnxI6+o5lrtr+QCIpGKu+OjDK3l7Mc=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
marisa-trie
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"language_data"
];
meta = with lib; {
description = "Supplement module for langcodes";
homepage = "https://github.com/rspeer/language_data";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}