at 24.11-pre 615 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pytestCheckHook, 6 mock, 7}: 8 9buildPythonPackage rec { 10 pname = "lml"; 11 version = "0.1.0"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "57a085a29bb7991d70d41c6c3144c560a8e35b4c1030ffb36d85fa058773bcc5"; 17 }; 18 19 nativeCheckInputs = [ 20 pytestCheckHook 21 mock 22 ]; 23 24 # Tests broken. 25 doCheck = false; 26 27 meta = { 28 description = "Load me later. A lazy plugin management system for Python"; 29 homepage = "http://lml.readthedocs.io/"; 30 license = lib.licenses.bsd3; 31 maintainers = with lib.maintainers; [ ]; 32 }; 33}