python3Packages.kivy-garden: init at 0.1.4
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
This commit is contained in:
parent
ffedd32f9f
commit
fa8a2b5bc4
30
pkgs/development/python-modules/kivy-garden/default.nix
Normal file
30
pkgs/development/python-modules/kivy-garden/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user