Merge pull request #54813 from plapadoo/fdroidserver-update

fdroidserver: 2016-05-31 -> 1.1
This commit is contained in:
Robert Schütz
2019-01-30 10:33:00 +01:00
committed by GitHub
7 changed files with 152 additions and 37 deletions

View File

@@ -0,0 +1,37 @@
{ lib, buildPythonPackage, fetchPypi, future, networkx, pygments, lxml, colorama, matplotlib,
asn1crypto, click, pydot, ipython, pyqt5, pyperclip }:
buildPythonPackage rec {
version = "3.3.3";
pname = "androguard";
src = fetchPypi {
inherit pname version;
sha256 = "1zlmn3byh2whg7k2xmcd7yy43lcawhryjnzcxr9bhn54709b6iyd";
};
propagatedBuildInputs = [
future
networkx
pygments
lxml
colorama
matplotlib
asn1crypto
click
pydot
ipython
pyqt5
pyperclip
];
# Tests are not shipped on PyPI.
doCheck = false;
meta = {
description = "Tool and python library to interact with Android Files";
homepage = https://github.com/androguard/androguard;
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.pmiddend ];
};
}

View File

@@ -0,0 +1,28 @@
{ lib, buildPythonPackage, fetchPypi, six, requests, websocket_client, docker_pycreds }:
buildPythonPackage rec {
version = "1.10.6";
pname = "docker-py";
src = fetchPypi {
inherit pname version;
sha256 = "05f49f6hnl7npmi7kigg0ibqk8s3fhzx1ivvz1kqvlv4ay3paajc";
};
# The tests access the network.
doCheck = false;
propagatedBuildInputs = [
six
requests
websocket_client
docker_pycreds
];
meta = {
description = "Python library for the Docker Remote API";
homepage = https://github.com/docker/docker-py/;
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.pmiddend ];
};
}

View File

@@ -1,35 +0,0 @@
{ stdenv
, buildPythonPackage
, fetchFromGitLab
, libcloud
, pyyaml
, paramiko
, pyasn1
, pyasn1-modules
, pillow
, mwclient
, GitPython
, isPy3k
}:
buildPythonPackage rec {
version = "2016-05-31";
pname = "fdroidserver-git";
disabled = ! isPy3k;
src = fetchFromGitLab {
owner = "fdroid";
repo = "fdroidserver";
rev = "401649e0365e6e365fc48ae8a3af94768af865f3";
sha256 = "1mmi2ffpym1qw694yj938kc7b4xhq0blri7wkjaqddcyykjyr94d";
};
propagatedBuildInputs = [ libcloud pyyaml paramiko pyasn1 pyasn1-modules pillow mwclient GitPython ];
meta = with stdenv.lib; {
homepage = https://f-droid.org;
description = "Server and tools for F-Droid, the Free Software repository system for Android";
license = licenses.agpl3;
};
}

View File

@@ -0,0 +1,21 @@
{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
version = "0.5.15";
pname = "python-vagrant";
src = fetchPypi {
inherit pname version;
sha256 = "1ikrh6canhcxg5y7pzmkcnnydikppv7s6sm9prfx90nk0ac8m6mg";
};
# The tests try to connect to qemu
doCheck = false;
meta = {
description = "Python module that provides a thin wrapper around the vagrant command line executable";
homepage = https://github.com/todddeluca/python-vagrant;
license = lib.licenses.mit;
maintainers = [ lib.maintainers.pmiddend ];
};
}