python3Packages.kivy-garden: init at 0.1.4

Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
This commit is contained in:
Marc 'risson' Schmitt 2020-11-23 19:01:29 +01:00
parent ffedd32f9f
commit fa8a2b5bc4
No known key found for this signature in database
GPG key ID: 9C3FA22FABF1AA8D
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage, fetchPypi
, requests
}:
buildPythonPackage rec {
pname = "kivy-garden";
version = "0.1.4";
src = fetchPypi {
inherit pname version;
sha256 = "0wkcpr2zc1q5jb0bi7v2dgc0vs5h1y7j42mviyh764j2i0kz8mn2";
};
propagatedBuildInputs = [ requests ];
pythonImportsCheck = [ "garden" ];
# There are no tests in the Pypi archive and building from source is not
# easily feasible because the build is done using buildozer and multiple
# repositories.
doCheck = false;
meta = with lib; {
description = "The kivy garden installation script, split into its own package for convenient use in buildozer.";
homepage = "https://pypi.python.org/pypi/kivy-garden";
license = licenses.mit;
maintainers = with maintainers; [ risson ];
};
}

View file

@ -3507,6 +3507,8 @@ in {
kitchen = callPackage ../development/python-modules/kitchen { };
kivy-garden = callPackage ../development/python-modules/kivy-garden { };
kiwisolver = if isPy3k then
callPackage ../development/python-modules/kiwisolver { }
else