mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-14 00:43:24 +00:00
f8c4a98e8e
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/'
34 lines
729 B
Nix
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 ];
|
|
};
|
|
}
|