My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/kivy-garden/default.nix

32 lines
728 B

{ lib
, buildPythonPackage
, fetchFromGitHub
, requests
}:
buildPythonPackage rec {
pname = "kivy-garden";
version = "0.1.5";
format = "setuptools";
src = fetchFromGitHub {
owner = "kivy-garden";
repo = "garden";
rev = "v${version}";
hash = "sha256-xOMBPFKV7mTa51Q0VKja7b0E509IaWjwlJVlSRVdct8=";
};
propagatedBuildInputs = [ requests ];
pythonImportsCheck = [ "garden" ];
# There are no tests
doCheck = false;
meta = with lib; {
description = "The kivy garden installation script, split into its own package for convenient use in buildozer.";
homepage = "https://github.com/kivy-garden/garden";
license = licenses.mit;
maintainers = with maintainers; [ risson ];
};
}