about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/kivy-garden/default.nix
blob: edfad0c9b91dc21ca3e9e159ffb306930c5d93aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 ];
  };
}