nixpkgs/pkgs/development/python-modules/kivy-garden/default.nix
Alexis Hildebrandt f8c4a98e8e treewide: Remove the definite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
2024-06-09 23:08:46 +02:00

34 lines
729 B
Nix

{
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 = "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 ];
};
}