1{ buildPythonPackage, fetchPypi, lib }: 2 3buildPythonPackage rec { 4 pname = "simpy"; 5 version = "3.0.11"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0hqgxk3lggf21jq9lh8838cdl24mdkdnpzh0w4m28d0zn2wjb5nh"; 10 }; 11 12 meta = with lib; { 13 homepage = https://simpy.readthedocs.io/en/latest/; 14 description = "A process-based discrete-event simulation framework based on standard Python."; 15 license = [ licenses.mit ]; 16 maintainers = with maintainers; [ shlevy ]; 17 }; 18}