Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / babelgladeextractor / default.nix
blobd6154a063e7c32255cb7701d3f091fb4be1fccb8
1 { lib
2 , isPy3k
3 , buildPythonPackage
4 , fetchPypi
5 , babel
6 }:
8 buildPythonPackage rec {
9   pname = "babelgladeextractor";
10   version = "0.7.0";
11   format = "setuptools";
12   disabled = (!isPy3k); # uses python3 specific file io in setup.py
14   src = fetchPypi {
15     pname = "BabelGladeExtractor";
16     inherit version;
17     extension = "tar.bz2";
18     sha256 = "160p4wi2ss69g141c2z59azvrhn7ymy5m9h9d65qrcabigi0by5w";
19   };
21   propagatedBuildInputs = [
22     babel
23   ];
25   # 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
26   doCheck = isPy3k;
28   meta = with lib; {
29     homepage = "https://github.com/gnome-keysign/babel-glade";
30     description = "Babel Glade XML files translatable strings extractor";
31     license = licenses.bsd3;
32     maintainers = with maintainers; [ ];
33   };