mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-17 02:34:05 +00:00
42 lines
1.0 KiB
Nix
42 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
isPy3k,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
babel,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "babelgladeextractor";
|
|
version = "0.7.0";
|
|
pyproject = true;
|
|
|
|
__structuredAttrs = true;
|
|
|
|
disabled = (!isPy3k); # uses python3 specific file io in setup.py
|
|
|
|
src = fetchPypi {
|
|
pname = "BabelGladeExtractor";
|
|
inherit (finalAttrs) version;
|
|
extension = "tar.bz2";
|
|
hash = "sha256-vPgF4otLsYyLaQmmWnz1x8K8v0rlCxZIeMloLSInF5g=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ babel ];
|
|
|
|
# SyntaxError: Non-ASCII character '\xc3' in file /build/BabelGladeExtractor-0.6.3/babelglade/tests/test_translate.py on line 20, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
|
|
doCheck = isPy3k;
|
|
|
|
pythonImportsCheck = [ "babelglade" ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/gnome-keysign/babel-glade";
|
|
description = "Babel Glade XML files translatable strings extractor";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
})
|