depot/third_party/nixpkgs/pkgs/development/python-modules/ots-python/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

49 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, substituteAll
, opentype-sanitizer
, setuptools-scm
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "ots-python";
version = "9.1.0";
format = "setuptools";
src = fetchPypi {
pname = "opentype-sanitizer";
inherit version;
hash = "sha256-1Zdd+eRECimZl8L8CCkm7pCjN0TafSsc5i2Y6/oH88I=";
};
patches = [
# Invoke ots-sanitize from the opentype-sanitizer package instead of
# downloading precompiled binaries from the internet.
# (nixpkgs-specific, not upstreamable)
(substituteAll {
src = ./0001-use-packaged-ots.patch;
ots_sanitize = "${opentype-sanitizer}/bin/ots-sanitize";
})
];
propagatedBuildInputs = [
opentype-sanitizer
];
nativeBuildInputs = [
setuptools-scm
];
doCheck = true;
nativeCheckInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Python wrapper for ots (OpenType Sanitizer)";
homepage = "https://github.com/googlefonts/ots-python";
license = licenses.bsd3;
maintainers = with maintainers; [ danc86 ];
};
}