2019-11-19 01:11:48 +00:00
{ stdenv
, lib
2019-12-24 10:04:00 +00:00
, isPy3k
2019-11-19 01:11:48 +00:00
, buildPythonPackage
, fetchPypi
, Babel
} :
buildPythonPackage rec {
pname = " b a b e l g l a d e e x t r a c t o r " ;
2019-12-24 10:04:00 +00:00
version = " 0 . 6 . 3 " ;
2019-11-19 01:11:48 +00:00
src = fetchPypi {
pname = " B a b e l G l a d e E x t r a c t o r " ;
inherit version ;
extension = " t a r . b z 2 " ;
2019-12-24 10:04:00 +00:00
sha256 = " 1 2 i 2 i 9 7 w a i 5 v v 5 h 5 2 2 r j 6 p f c d s f y r k g m j q c 6 9 9 m 5 v 4 a f 0 y y 3 r q s q " ;
2019-11-19 01:11:48 +00:00
} ;
propagatedBuildInputs = [
Babel
] ;
2019-12-24 10:04:00 +00:00
# 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 ;
2019-11-19 01:11:48 +00:00
meta = with lib ; {
homepage = " h t t p s : / / g i t h u b . c o m / g n o m e - k e y s i g n / b a b e l - g l a d e " ;
description = " B a b e l G l a d e X M L f i l e s t r a n s l a t a b l e s t r i n g s e x t r a c t o r " ;
license = licenses . bsd3 ;
maintainers = with maintainers ; [ jtojnar ] ;
} ;
}