mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
pythonPackages.defcon: init at 0.7.2
This commit is contained in:
parent
61b57f0781
commit
fb67ae709f
35
pkgs/development/python-modules/defcon/default.nix
Normal file
35
pkgs/development/python-modules/defcon/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, pythonOlder
|
||||
, fonttools
|
||||
, pytest, pytestrunner, lxml, fs, unicodedata2, fontpens
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "defcon";
|
||||
version = "0.7.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1lfqsvxmq1j0nvp26gidnqkj1dyxv7jalc6i7fz1r3nc7niflrqr";
|
||||
extension = "zip";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
fonttools
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytest
|
||||
pytestrunner
|
||||
lxml
|
||||
fs
|
||||
unicodedata2
|
||||
fontpens
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A set of UFO based objects for use in font editing applications";
|
||||
homepage = "https://github.com/robotools/defcon";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.sternenseemann ];
|
||||
};
|
||||
}
|
@ -2210,6 +2210,8 @@ in {
|
||||
|
||||
debian = callPackage ../development/python-modules/debian {};
|
||||
|
||||
defcon = callPackage ../development/python-modules/defcon { };
|
||||
|
||||
defusedxml = callPackage ../development/python-modules/defusedxml {};
|
||||
|
||||
dodgy = callPackage ../development/python-modules/dodgy { };
|
||||
|
Loading…
Reference in New Issue
Block a user