Files
nixpkgs/pkgs/development/python-modules/youseedee/default.nix
Martin Weinelt 266c161842 python312Packages: cleanup instances of doCheck = true
This is implicitly the case, and unless `doCheck` is referenced it makes
no sense setting it.
2024-10-26 01:47:02 +02:00

49 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
substituteAll,
filelock,
requests,
unicode-character-database,
}:
buildPythonPackage rec {
pname = "youseedee";
version = "0.5.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-hQkI8kdropLiO86LXDy6eQma3FEg48gLldU7bFg9dzI=";
};
patches = [
# Load data files from the unicode-character-database package instead of
# downloading them from the internet. (nixpkgs-specific, not upstreamable)
(substituteAll {
src = ./0001-use-packaged-unicode-data.patch;
ucd_dir = "${unicode-character-database}/share/unicode";
})
];
propagatedBuildInputs = [
filelock
requests
];
# Package has no unit tests, but we can check an example as per README.rst:
checkPhase = ''
runHook preCheck
python -m youseedee 0x078A | grep -q "'Block': 'Thaana'"
runHook postCheck
'';
meta = with lib; {
description = "Python library for querying the Unicode Character Database";
homepage = "https://github.com/simoncozens/youseedee";
license = licenses.mit;
maintainers = with maintainers; [ danc86 ];
};
}