Merge pull request #94927 from danieldk/transformers-unix-final

python3Packages.transformers: enable on all Unix platforms
This commit is contained in:
Benjamin Hipple
2020-08-08 14:13:58 -04:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
@@ -31,7 +31,7 @@ buildPythonPackage rec {
homepage = "https://github.com/alvations/sacremoses"; homepage = "https://github.com/alvations/sacremoses";
description = "Python port of Moses tokenizer, truecaser and normalizer"; description = "Python port of Moses tokenizer, truecaser and normalizer";
license = licenses.lgpl21Plus; license = licenses.lgpl21Plus;
platforms = [ "x86_64-linux" ]; platforms = platforms.unix;
maintainers = with maintainers; [ pashashocky ]; maintainers = with maintainers; [ pashashocky ];
}; };
} }
@@ -75,7 +75,7 @@ buildPythonPackage rec {
homepage = "https://github.com/huggingface/transformers"; homepage = "https://github.com/huggingface/transformers";
description = "State-of-the-art Natural Language Processing for TensorFlow 2.0 and PyTorch"; description = "State-of-the-art Natural Language Processing for TensorFlow 2.0 and PyTorch";
license = licenses.asl20; license = licenses.asl20;
platforms = [ "x86_64-linux" ]; platforms = platforms.unix;
maintainers = with maintainers; [ danieldk pashashocky ]; maintainers = with maintainers; [ danieldk pashashocky ];
}; };
} }