1{ lib
2, buildPythonPackage, fetchPypi
3, requests
4}:
5
6buildPythonPackage rec {
7 pname = "kivy-garden";
8 version = "0.1.4";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "0wkcpr2zc1q5jb0bi7v2dgc0vs5h1y7j42mviyh764j2i0kz8mn2";
13 };
14
15 propagatedBuildInputs = [ requests ];
16
17 pythonImportsCheck = [ "garden" ];
18
19 # There are no tests in the Pypi archive and building from source is not
20 # easily feasible because the build is done using buildozer and multiple
21 # repositories.
22 doCheck = false;
23
24 meta = with lib; {
25 description = "The kivy garden installation script, split into its own package for convenient use in buildozer.";
26 homepage = "https://pypi.python.org/pypi/kivy-garden";
27 license = licenses.mit;
28 maintainers = with maintainers; [ risson ];
29 };
30}