mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
pythonPackages.fontmath: init at 0.6.0
This commit is contained in:
parent
47addc60d5
commit
61b57f0781
25
pkgs/development/python-modules/fontmath/default.nix
Normal file
25
pkgs/development/python-modules/fontmath/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib, buildPythonPackage, fetchPypi
|
||||
, fonttools
|
||||
, pytest, pytestrunner
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "fontMath";
|
||||
version = "0.6.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "09xdqdjyjlx5k9ymi36d7hkgvn55zzjzd65l2yqidkfazlmh14ss";
|
||||
extension = "zip";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ fonttools ];
|
||||
checkInputs = [ pytest pytestrunner ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A collection of objects that implement fast font, glyph, etc. math";
|
||||
homepage = "https://github.com/robotools/fontMath/";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.sternenseemann ];
|
||||
};
|
||||
}
|
@ -4142,6 +4142,8 @@ in {
|
||||
|
||||
fontpens = callPackage ../development/python-modules/fontpens { };
|
||||
|
||||
fontmath = callPackage ../development/python-modules/fontmath { };
|
||||
|
||||
fonttools = callPackage ../development/python-modules/fonttools { };
|
||||
|
||||
foolscap = callPackage ../development/python-modules/foolscap { };
|
||||
|
Loading…
Reference in New Issue
Block a user