nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

pythonPackages.googletrans: cleanup

+2 -9
+2 -9
pkgs/development/python-modules/googletrans/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, requests, pytest, coveralls }: 1 + { lib, buildPythonPackage, fetchFromGitHub, requests }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "googletrans"; ··· 11 11 sha256 = "0wzzinn0k9rfv9z1gmfk9l4kljyd4n6kizsjw4wjxv91kfhj92hz"; 12 12 }; 13 13 14 - propagatedBuildInputs = [ 15 - requests 16 - ]; 17 - 18 - checkInputs = [ pytest coveralls ]; 14 + propagatedBuildInputs = [ requests ]; 19 15 20 16 # majority of tests just try to ping Google's Translate API endpoint 21 17 doCheck = false; 22 - checkPhase = '' 23 - pytest 24 - ''; 25 18 26 19 pythonImportsCheck = [ "googletrans" ]; 27 20