Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchFromGitHub 4, requests 5}: 6 7buildPythonPackage rec { 8 pname = "kivy-garden"; 9 version = "0.1.5"; 10 format = "setuptools"; 11 12 src = fetchFromGitHub { 13 owner = "kivy-garden"; 14 repo = "garden"; 15 rev = "v${version}"; 16 hash = "sha256-xOMBPFKV7mTa51Q0VKja7b0E509IaWjwlJVlSRVdct8="; 17 }; 18 19 propagatedBuildInputs = [ requests ]; 20 21 pythonImportsCheck = [ "garden" ]; 22 23 # There are no tests 24 doCheck = false; 25 26 meta = with lib; { 27 description = "The kivy garden installation script, split into its own package for convenient use in buildozer."; 28 homepage = "https://github.com/kivy-garden/garden"; 29 license = licenses.mit; 30 maintainers = with maintainers; [ risson ]; 31 }; 32}