at master 649 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools, 6 requests, 7}: 8 9buildPythonPackage rec { 10 pname = "gitterpy"; 11 version = "0.1.7"; 12 pyproject = true; 13 14 src = fetchPypi { 15 inherit pname version; 16 hash = "sha256-nmZ6sVjrHRLfvXMr/fYiN+a4Wly87YKwAR+heP/sNkE="; 17 }; 18 19 build-system = [ setuptools ]; 20 21 dependencies = [ requests ]; 22 23 # Package has no tests 24 doCheck = false; 25 26 pythonImportsCheck = [ "gitterpy" ]; 27 28 meta = { 29 description = "Python interface for the Gitter API"; 30 homepage = "https://github.com/MichaelYusko/GitterPy"; 31 license = lib.licenses.mit; 32 maintainers = [ lib.maintainers.jamiemagee ]; 33 }; 34}