python311Packages.opentypespec: init at 1.9.1

This commit is contained in:
Dan Callaghan 2023-11-25 16:24:39 +11:00
parent e54958590f
commit a08c20f482
No known key found for this signature in database
GPG Key ID: 26B5AA2FDAF2F30A
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, fetchPypi
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "opentypespec";
version = "1.9.1";
src = fetchPypi {
inherit pname version;
hash = "sha256-fOEHmtlCkFhn1jyIA+CsHIfud7x3PPb7UWQsnrVyDqY=";
};
doCheck = true;
nativeCheckInputs = [
unittestCheckHook
];
unittestFlagsArray = [ "-s" "test" "-v" ];
meta = with lib; {
description = "Python library for OpenType specification metadata";
homepage = "https://github.com/simoncozens/opentypespec-py";
license = licenses.asl20;
maintainers = with maintainers; [ danc86 ];
};
}

View File

@ -8641,6 +8641,8 @@ self: super: with self; {
opentsne = callPackage ../development/python-modules/opentsne { };
opentypespec = callPackage ../development/python-modules/opentypespec { };
openvino = callPackage ../development/python-modules/openvino {
openvino-native = pkgs.openvino.override {
inherit python;