nixpkgs/pkgs/tools/misc/xdxf2slob/default.nix

23 lines
662 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3Packages }:
2016-09-25 19:41:23 +00:00
2019-08-13 21:52:01 +00:00
python3Packages.buildPythonApplication {
2016-09-25 19:41:23 +00:00
name = "xdxf2slob-unstable-2015-06-30";
src = fetchFromGitHub {
owner = "itkach";
repo = "xdxf2slob";
rev = "6831b93c3db8c73200900fa4ddcb17350a677e1b";
sha256 = "0m3dnc3816ja3kmik1wabb706dkqdf5sxvabwgf2rcrq891xcddd";
};
propagatedBuildInputs = [ python3Packages.PyICU python3Packages.slob ];
meta = with lib; {
2016-09-25 19:41:23 +00:00
description = "Tool to convert XDXF dictionary files to slob format";
homepage = "https://github.com/itkach/xdxf2slob/";
2016-09-25 19:41:23 +00:00
license = licenses.gpl3;
maintainers = [ maintainers.rycee ];
2016-09-25 19:41:23 +00:00
platforms = platforms.all;
};
}