3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.googleplaydownloader: remove

Source and project homepage are offline
This commit is contained in:
Robin Gloster 2016-08-28 23:27:09 +00:00
parent 9145ba0d90
commit db2582de81
No known key found for this signature in database
GPG key ID: 5E4C836C632C2882

View file

@ -6634,37 +6634,6 @@ in modules // {
propagatedBuildInputs = with self; [ gdata ];
};
googleplaydownloader = buildPythonPackage rec {
version = "1.8";
name = "googleplaydownloader-${version}";
src = pkgs.fetchurl {
url = "https://codingteam.net/project/googleplaydownloader/download/file/googleplaydownloader_${version}.orig.tar.gz";
sha256 = "1hxl4wdbiyq8ay6vnf3m7789jg0kc63kycjj01x1wm4gcm4qvbkx";
};
disabled = ! isPy27;
propagatedBuildInputs = with self; [ configparser pyasn1 ndg-httpsclient requests protobuf wxPython];
preBuild = ''
substituteInPlace googleplaydownloader/__init__.py --replace \
'open(os.path.join(HERE, "googleplaydownloader"' \
'open(os.path.join(HERE'
'';
postInstall = ''
cp -R googleplaydownloader/ext_libs $out/${python.sitePackages}/
'';
meta = {
homepage = https://codingteam.net/project/googleplaydownloader;
description = "Graphical software to download APKs from the Google Play store";
license = licenses.agpl3;
maintainers = with maintainers; [ DamienCassou ];
};
};
gplaycli = buildPythonPackage rec {
version = "0.1.2";
name = "gplaycli-${version}";