mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python311Packages.opentypespec: init at 1.9.1
This commit is contained in:
parent
e54958590f
commit
a08c20f482
29
pkgs/development/python-modules/opentypespec/default.nix
Normal file
29
pkgs/development/python-modules/opentypespec/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user